totallycheattracking.fcl
Go to the documentation of this file.
1 #
2 # File: totallycheattracking.fcl
3 # Brief: Runs the reconstruction of trajectories from simulated particles.
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: 20171226
6 # Version: 1.0
7 #
8 # Description:
9 # The module TotallyCheatTracker is used to "reconstruct" the simulated
10 # particles from the input.
11 #
12 # Input:
13 # - collection of simb::MCParticle
14 #
15 # Output:
16 # - collection of recob::Trajectory and associations with simb::MCParticle
17 #
18 #
19 # Changes:
20 # 20171226 (petrillo@fnal.gov) [v1.0]
21 # original version
22 #
23 #
24 
25 #-------------------------------------------------------------------------------
26 process_name: CheatTrk
27 
28 #-------------------------------------------------------------------------------
29 # no source specified; use -s option from command line
30 
31 #-------------------------------------------------------------------------------
32 physics: {
33 
34  producers: {
35 
36  cheattrk: {
37 
38  particles: "particlemaker"
39 
40  minLength: 5.0 # cm
41 
42  } # cheattrk
43 
44  } # producers
45 
46  reco: [ cheattrk ]
47 
48  trigger_paths: [ reco ]
49 
50 } # physics
51 
52 
53 #-------------------------------------------------------------------------------
54 outputs: {
55  output: {
56  module_type: RootOutput
57 
58  fileName: "%ifb_%tc_%p.root"
59 
60  } # output
61 } # outputs
62 
63 #-------------------------------------------------------------------------------