Skip to content

Commit e7cfb2c

Browse files
authored
Merge pull request #595 from SBNSoftware/feature/twester_wiremod_production
WireMod utility functions for SBN
2 parents 09ee016 + b0de6f4 commit e7cfb2c

5 files changed

Lines changed: 982 additions & 0 deletions

File tree

sbncode/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ add_subdirectory(GeometryTools)
2020
add_subdirectory(CosmicID)
2121
add_subdirectory(DetSim)
2222
add_subdirectory(Cluster3D)
23+
add_subdirectory(WireMod)
2324
add_subdirectory(HitFinder)
2425

2526
# Supera

sbncode/WireMod/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
add_subdirectory(Utility)
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
cet_make_library(
2+
LIBRARY_NAME
3+
sbncode_WireMod_Utility
4+
5+
SOURCE
6+
WireModUtility.cc
7+
8+
LIBRARIES
9+
${ART_FRAMEWORK_CORE}
10+
${MF_MESSAGELOGGER}
11+
${Boost_SYSTEM_LIBRARY}
12+
${ROOT_BASIC_LIB_LIST}
13+
${ROOT_HIST}
14+
art_root_io::TFileService_service
15+
larcorealg::Geometry
16+
larcore::Geometry_Geometry_service
17+
lardataobj::AnalysisBase
18+
lardataobj::RawData
19+
lardataobj::RecoBase
20+
lardataalg::DetectorInfo
21+
lardata::RecoObjects
22+
lardata::Utilities
23+
larreco::RecoAlg
24+
${LARRECO_LIB}
25+
${LARDATA_LIB}
26+
${ART_FRAMEWORK_CORE}
27+
${ART_FRAMEWORK_PRINCIPAL}
28+
${ART_FRAMEWORK_SERVICES_REGISTRY}
29+
${ART_FRAMEWORK_SERVICES_OPTIONAL}
30+
${ART_FRAMEWORK_SERVICES_OPTIONAL_RANDOMNUMBERGENERATOR_SERVICE}
31+
${ART_FRAMEWORK_SERVICES_OPTIONAL_TFILESERVICE_SERVICE}
32+
${MF_MESSAGELOGGER}
33+
${FHICLCPP}
34+
${CLHEP}
35+
${ROOT_GEOM}
36+
${ROOT_XMLIO}
37+
${ROOT_GDML}
38+
${ROOT_BASIC_LIB_LIST}
39+
${ROOT_HIST}
40+
BASENAME_ONLY
41+
)
42+
43+
install_headers()
44+
install_source()
45+

0 commit comments

Comments
 (0)