calo.fcl
Go to the documentation of this file.
1 #include "job/services.fcl"
2 
3 #include "job/caldata.fcl"
4 #include "job/hitfindermodules.fcl"
5 #include "job/clustermodules.fcl"
6 
7 #include "job/trackfindermodules.fcl"
8 #include "job/vertexfindermodules.fcl"
9 #include "job/calorimetry_microboone.fcl"
10 #include "job/particleid.fcl"
11 #include "job/analysistreemodule.fcl"
12 #include "job/filters.fcl"
13 
14 process_name: AnaTree
15 
16 services:
17 {
18  # Load the service that manages root files for histograms.
19  TFileService: { fileName: "standard_reco_hist.root" }
20  TimeTracker {}
21  MemoryTracker: { } # default is one
22  RandomNumberGenerator: {} #ART native random number generator
23  @table::microboone_services
24 }
25 
26 #source is now a root file
27 source:
28 {
29  module_type: RootInput
30  maxEvents: -1 # Number of events to create
31 }
32 
33 outputs:
34 {
35  out1:
36  {
37  module_type: RootOutput
38  fileName: "standard_reco.root" #default file name, can override from command line with -o or --output
39  #SelectEvents: {SelectEvents: [reco] }
40  }
41 
42 
43 }
44 
45 physics:
46 {
47 
48  producers:{}
49 
50  filters:{}
51 
52  analyzers:{}
53 
54  #define the producer and filter modules for this path, order matters,
55  #filters reject all following items. see lines starting physics.producers below
56  # reco: [ scanfilt, caldata, ffthit, dbcluster, hough, linemerger, track3d ]
57  #reco: [ caldata, ffthit, dbcluster, hough, linemerger, vertex2d, kingacluster, spacepts, matchtracks, calo, pid ]
58 reco: [ calo ]
59 # reco: [ caldata, ffthit, dbcluster, hough, linemerger, track3d ]
60  # reco: [ scanfilt ]
61 # ana: [ analysistree ]
62 # ana: [matchtracks]
63  #define the output stream, there could be more than one if using filters
64  stream1: [ out1 ]
65 
66  #trigger_paths is a keyword and contains the paths that modify the art::event,
67  #ie filters and producers
68  trigger_paths: [reco]
69 
70  #end_paths is a keyword and contains the paths that do not modify the art::Event,
71  #ie analyzers and output streams. these all run simultaneously
72 # end_paths: [ stream1, ana ]
73  end_paths: [ stream1 ]
74 # end_paths: [ ana ]
75 }
76 
77 # define the list of LArSoft modules to run through the simulate path
78 #physics.filters.scanfilt: @local::argoneut_scanfilter
79 #physics.producers.filter: @local::evtfilter
80 #physics.producers.caldata: @local::argoneut_calwire
81 #physics.producers.ffthit: @local::argoneut_gaushitfinder
82 #physics.producers.dbcluster: @local::argoneut_dbcluster
83 #physics.producers.hough: @local::argoneut_houghlinefinder
84 #physics.producers.linemerger: @local::argoneut_linemerger
85 #physics.producers.vertex2d: @local::argoneut_vertex2d
86 #physics.producers.kingacluster: @local::argoneut_kingacluster
87 #physics.producers.spacepts: @local::argoneut_spacepts
88 #physics.producers.matchtracks: @local::argoneut_matchtracks
89 physics.producers.calo: @local::microboone_calomc
90 #physics.producers.pid: @local::argoneut_chi2pid
91 #physics.analyzers.analysistree: @local::microboone_analysistree
92 #physics.producers.filter.BadEvents: [5]
93 #physics.producers.filter.BadRuns: [10]
94 #physics.producers.matchtracks.lartracks: "spacepts"
95 physics.producers.calo.TrackModuleLabel: "trackkalmanhit"
96 #physics.producers.calo.CaloAlg.CaloUseModBox: true
97 #physics.producers.calo.UseArea: true
98 #physics.producers.pid.TrackModuleLabel: "spacepts"
99 #physics.producers.pid.CalorimetryModuleLabel: "calo"
100 #physics.analyzers.analysistree.TrackModuleLabel: "beziertracker"
101 #physics.analyzers.analysistree.TrackMatchModuleLabel: "matchtracks"
102 #physics.analyzers.analysistree.CalorimetryModuleLabel: "calo"
103 #physics.analyzers.analysistree.ParticleIDModuleLabel: "pid"
104 #physics.analyzers.analysistree.GenieGenModuleLabel: "generator"
105 #physics.analyzers.analysistree.POTModuleLabel: "generator"
106 
107