2 # File: test_totallycheattracker.fcl
3 # Brief: Runs a "test" on TotallyCheatTracker module.
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
9 # The test creates some particles (`simb::MCParticle` collection), processes
10 # them into cheat tracks and prints the resulting tracks.
11 # The only check is on the number of produced tracks.
17 # - `simb::MCParticle`, `lar::example::CheatTrack` and associations into
18 # `CheatTrkTest.root` file.
22 # 20171227 (petrillo@fnal.gov) [v1.0]
27 #-------------------------------------------------------------------------------
28 process_name: CheatTrkTest
30 #-------------------------------------------------------------------------------
32 module_type: EmptyEvent
36 #-------------------------------------------------------------------------------
42 module_type: ParticleMaker
45 { length: 1.0 energy: 3.0 type: 11 },
46 { length: 2.0 energy: 2.0 type: 13 },
47 { length: 3.0 energy: 1.0 type: -11 },
48 { length: 4.0 energy: 2.0 type: -13 },
49 { length: 5.0 energy: 3.0 type: 211 },
50 { length: 6.0 energy: 4.0 type: 111 },
51 { length: 7.0 energy: 3.0 type: -211 },
52 { length: 8.0 energy: 2.0 type: 2112 },
53 { length: 9.0 energy: 1.0 type: 2212 }
59 module_type: TotallyCheatTracker
61 particles: "particler"
72 module_type: DumpCheatTracks
81 reco: [ particler, cheattrk ]
85 trigger_paths: [ reco ]
86 end_paths: [ dump, stream ]
91 #-------------------------------------------------------------------------------
94 module_type: RootOutput
95 fileName: "CheatTrkTest.root"
99 #-------------------------------------------------------------------------------