Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -176,3 +176,6 @@ physics.producers.cafmaker.FlashMatchSCECryoSuffixes: [""]

# input art file.
physics.producers.cafmaker.SystWeightLabels: []

physics.producers.cafmaker.SBNDFrameShiftInfoLabel: "frameshift"
physics.producers.cafmaker.SBNDTimingInfoLabel: "frameshift"
6 changes: 4 additions & 2 deletions sbndcode/JobConfigurations/standard/reco/reco2_data.fcl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "crt_calib_service.fcl"
#include "opt0finder_sbnd_data.fcl"
#include "sbnd_tpcpmt3dbarycentermatching_config.fcl"
#include "frameshift_sbnd_data.fcl"
#include "standard_reco2_sbnd.fcl"

services:
Expand Down Expand Up @@ -32,14 +33,15 @@ physics.producers:
### SCE-aware shower reco for data
pandoraSCEShower: @local::sbnd_sce_incremental_pandoraModularShowerCreationData
pandoraSCEShowerSBN: @local::sbnd_sce_sbn_pandoraModularShowerCreationData


frameshift: @local::frameshift_data
}

physics.reco2: [ pandora, pandoraTrack, pandoraShower, pandoraShowerSBN, pandoraCaloData, pandoraPidData,
cvn, opt0finder, crtveto, crtspacepointmatching, crttrackmatching, tpcpmtbarycentermatching,
pandoraSCE, pandoraSCETrack, pandoraSCEShower, pandoraSCEShowerSBN, pandoraSCECaloData, pandoraSCEPidData,
cvnSCE, opt0finderSCE, tpcpmtbarycentermatchingSCE, crtspacepointmatchingSCE, crttrackmatchingSCE,
caloskimCalorimetry, blipreco]
caloskimCalorimetry, blipreco, frameshift]

physics.analyzers.caloskim.G4producer: ""
physics.analyzers.caloskim.SimChannelproducer: ""
Expand Down
1 change: 1 addition & 0 deletions sbndcode/Timing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ install_headers()
# install_fhicl()
# install_source()

add_subdirectory(FrameShift)
add_subdirectory(WaveformAlignment)
15 changes: 15 additions & 0 deletions sbndcode/Timing/FrameShift/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
set (
MODULE_LIBRARIES
lardata::Utilities
art_root_io::tfile_support
art_root_io::TFileService_service
artdaq_core::artdaq-core_Data
ROOT::Core
ROOT::Tree
sbnobj::SBND_Timing
sbnobj::SBND_CRT
)
cet_build_plugin(FrameShift art::module SOURCE FrameShift_module.cc LIBRARIES ${MODULE_LIBRARIES})

install_fhicl()
install_source()
Loading