-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script for processing the output of mu2e_trig_config/test/testTri…
…ggerMC.fcl
- Loading branch information
1 parent
ea5f9e0
commit 0d90c7f
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# | ||
# Run TrkAna on the output of the trigger, including MC truth matching | ||
# | ||
#include "Offline/fcl/standardServices.fcl" | ||
#include "TrkAna/fcl/prolog_trigger.fcl" | ||
process_name : TrkAnaTriggerMC | ||
services : @local::Services.Reco | ||
source : { | ||
module_type : RootInput | ||
} | ||
|
||
physics : { | ||
analyzers : { | ||
TAtprDeM : { | ||
@table::TrkAnaTrigger.TrkAnaDeMTT | ||
FitType : LoopHelix | ||
candidate : { | ||
branch: "trk" | ||
options : { | ||
@table::AllOpt | ||
fillHits : true | ||
} | ||
input : "TTKSF" | ||
suffix : "DeM" | ||
} | ||
KalSeedMCAssns: "SelectRecoMCtprDeM" | ||
SelectEvents : [ "globalTrigger:tprDeM_highP_stopTarg" ] | ||
} | ||
TAcprDeM : { | ||
@table::TrkAnaTrigger.TrkAnaDeMTT | ||
FitType : LoopHelix | ||
candidate : { | ||
branch: "trk" | ||
options : { | ||
@table::AllOpt | ||
fillHits : true | ||
} | ||
input : "TTCalSeedFit" | ||
suffix : "Dem" | ||
} | ||
KalSeedMCAssns: "SelectRecoMCcprDeM" | ||
SelectEvents : [ "globalTrigger:cprDeM_highP_stopTarg" ] | ||
} | ||
TAtprDeP : { | ||
@table::TrkAnaTrigger.TrkAnaDePTT | ||
FitType : LoopHelix | ||
candidate : { | ||
branch: "trk" | ||
options : { | ||
@table::AllOpt | ||
fillHits : true | ||
} | ||
input : "TTKSF" | ||
suffix : "DeP" | ||
} | ||
KalSeedMCAssns: "SelectRecoMCtprDeP" | ||
SelectEvents : [ "globalTrigger:tprDeP_highP_stopTarg" ] | ||
} | ||
TAcprDeP : { | ||
@table::TrkAnaTrigger.TrkAnaDePTT | ||
FitType : LoopHelix | ||
candidate : { | ||
branch: "trk" | ||
options : { | ||
@table::AllOpt | ||
fillHits : true | ||
} | ||
input : "TTCalSeedFit" | ||
suffix : "Dep" | ||
} | ||
KalSeedMCAssns: "SelectRecoMCcprDeP" | ||
# SelectEvents : [ "globalTrigger:cprDeP_highP_stopTarg" ] | ||
SelectEvents : [ "globalTrigger:cprDeP_highP_stopTarg" ] | ||
} | ||
} | ||
EndPath : [TAtprDeM, TAcprDeM, TAtprDeP, TAcprDeP] | ||
} | ||
end_paths : [ EndPath ] | ||
services.TFileService.fileName: "nts.owner.trkana-triggerMC.version.sequencer.root" |