Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refine LHCb analysis example #741

Merged
merged 10 commits into from
Jun 14, 2023
2 changes: 1 addition & 1 deletion examples/root/lhcb_analysis/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (NOT TARGET llama::llama)
find_package(llama REQUIRED)
endif()
add_executable(${PROJECT_NAME} lhcb.cpp)
#target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_20)
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_20)
target_link_libraries(${PROJECT_NAME} PRIVATE
ROOT::Hist ROOT::Graf ROOT::Gpad ROOT::ROOTNTuple llama::llama OpenMP::OpenMP_CXX)
if (MSVC)
Expand Down
7 changes: 3 additions & 4 deletions examples/root/lhcb_analysis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ This example is a LLAMA version from the IO benchmark found here:
https://github.com/jblomer/iotools/blob/master/lhcb.cxx

The lhcb analysis example requires an input file, which can be downloaded here:
https://root.cern/files/RNTuple/

The file is typically called B2HHH~zstd.ntuple

https://root.cern/files/RNTuple/.
The file is typically called B2HHH~zstd.ntuple, so you can run:
`curl https://root.cern/files/RNTuple/B2HHH~zstd.ntuple -o B2HHH~zstd.ntuple`
If you get an error due to a version incompatibility of the file, try this workaround:
https://github.com/jblomer/iotools/issues/9
Loading