Skip to content

Imported AssnsCrosser algorithm from icarusalg [1/3] #2

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ find_package( sbnobj REQUIRED )
find_package( sbnanaobj REQUIRED )
find_package( CLHEP REQUIRED )
find_package( ROOT REQUIRED )
# find_package( Boost COMPONENTS system filesystem REQUIRED )
find_package( Boost COMPONENTS system filesystem REQUIRED )

# macros for dictionary and simple_plugin
include(ArtDictionary)
Expand Down
1 change: 1 addition & 0 deletions sbnalg/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
add_subdirectory(Geometry)
add_subdirectory(Utilities)
add_subdirectory(gallery)
1,831 changes: 1,831 additions & 0 deletions sbnalg/Utilities/AssnsCrosser.h

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions sbnalg/Utilities/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
cet_make_library(INTERFACE
SOURCE
"AssnsCrosser.h"
LIBRARIES INTERFACE
larcorealg::CoreUtils
canvas::canvas
)

install_headers()
install_source()
install_fhicl()
10 changes: 10 additions & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
# cmake driver file for testing from CET build tools
include(CetTest)

cet_make_library(
LIBRARY_NAME Test
INTERFACE
SOURCE
FrameworkEventMockup.h
LIBRARIES INTERFACE
canvas::canvas
)

# Always enable asserts (for tests only)
cet_enable_asserts()

add_subdirectory(Geometry)
add_subdirectory(Utilities)
Loading