standard_reco_protodunedp.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "caldata_dune.fcl"
3 #include "hitfindermodules_dune.fcl"
4 #include "cluster_dune.fcl"
5 #include "trackfindermodules_dune.fcl"
6 #include "pandoramodules_dune.fcl"
7 #include "calorimetry_dune10kt.fcl"
8 #include "mctrutht0matching.fcl"
9 #include "t0reco.fcl"
10 #include "particleid.fcl"
11 #include "showerfindermodules_dune.fcl"
12 #include "channelstatus_pddp.fcl"
13 #include "tools_dune.fcl"
14 process_name: Reco
15 
16 services:
17 {
18  # Load the service that manages root files for histograms.
19  TFileService: { fileName: "hist.root" }
20  TimeTracker: {}
21  MemoryTracker: {}
22  RandomNumberGenerator: {} #ART native random number generator
23  message: @local::dune_message_services_prod_debug
24  FileCatalogMetadata: @local::art_file_catalog_mc
25  @table::protodunedphase_reco_services_legacy
26 }
27 
28 
29 # services.message.destinations.LogStandardOut.threshold: "INFO"
30 services.CrpGainService: @local::protodunedphase_crpgain
31 services.ChannelStatusService: @local::pddp_channel_status_lemblind
32 services.Geometry: @local::protodunedphase_geo
33 
34 #source is now a root file
35 source:
36 {
37  module_type: RootInput
38  maxEvents: -1
39  fileNames: ["detsim.root"]
40 }
41 
42 # Define and configure some modules to do work on each event.
43 # First modules are defined; they are scheduled later.
44 # Modules are grouped by type.
45 physics:
46 {
47  producers:
48  {
49 # random number saver
50  rns: { module_type: RandomNumberSaver }
51 # convert raw::RawDigit to recob::wire
52  caldata: @local::dunefddphase_calwire
53 # actual hit finder and recconstruction
54  gaushit: @local::dunefddphase_gaushitfinder
55  fasthit: @local::dunefd_fasthitfinder
56  linecluster: @local::dunefd_linecluster
57  calo: @local::dune10kt_calomc
58  #pandora: @local::dunefd_pandora
59  pandora: @local::protodune_dp_pandora
60  pandoraTrack: @local::dune_pandoraTrackCreation
61  pandoraShower: @local::dune_pandoraShowerCreation
62  pmtrack: @local::dunefd_pmalgtrackmaker
63  pmtrajfit: @local::dunefd_pmalgtrajfitter
64  pmtrackcalo: @local::dune10kt_calomc
65  pmtrackpid: @local::standard_chi2pid
66  blurredcluster: @local::dune10kt_blurredcluster
67  emshower: @local::dune10kt_emshower
68  }
69 
70  #define the producer and filter modules for this path, order matters,
71  #filters reject all following items. see lines starting physics.producers below
72  reco: [ rns, caldata, fasthit, gaushit, pandora, pandoraTrack, pandoraShower, linecluster, pmtrack, pmtrackcalo, pmtrackpid, blurredcluster, emshower ]
73 
74  analyzers:
75  {
76  }
77 
78  analyzeIt: [ ]
79 
80  #define the output stream, there could be more than one if using filters
81  stream1: [ out1 ]
82 
83  #trigger_paths is a keyword and contains the paths that modify the art::event,
84  #ie filters and producers
85  trigger_paths: [reco]
86 
87  #end_paths is a keyword and contains the paths that do not modify the art::Event,
88  #ie analyzers and output streams. these all run simultaneously
89  end_paths: [stream1]
90 }
91 
92 #block to define where the output goes. if you defined a filter in the physics
93 #block and put it in the trigger_paths then you need to put a SelectEvents: {SelectEvents: [XXX]}
94 #entry in the output stream you want those to go to, where XXX is the label of the filter module(s)
95 outputs:
96 {
97  out1:
98  {
99  module_type: RootOutput
100  fileName: "%ifb_reco.root"
101  dataTier: "full-reconstructed"
102  compressionLevel: 1
103  }
104 }
105 ### Here, we overwrite ALL module labels with the ones defined above.
106 
107 physics.producers.caldata.SigThrFact: 0.2
108 
109 
110 #PMAlg configuration
111 
112 physics.producers.linecluster.HitFinderModuleLabel: "gaushit"
113 
114 physics.producers.pmtrackcalo.TrackModuleLabel: "pmtrack"
115 physics.producers.pmtrackcalo.SpacePointModuleLabel: "pmtrack"
116 physics.producers.pmtrackcalo.T0ModuleLabel: ""
117 physics.producers.pmtrackcalo.CaloAlg.CalAreaConstants: [ 4.966e-2, 4.966e-2 ]
118 physics.producers.pmtrackpid.CalorimetryModuleLabel: "pmtrackcalo"
119 physics.producers.pmtrackpid.TrackModuleLabel: "pmtrack"
120 
121 physics.producers.pmtrack.HitModuleLabel: "linecluster"
122 physics.producers.pmtrack.ClusterModuleLabel: "linecluster"
123 
124 physics.producers.pmtrajfit.HitModuleLabel: "linecluster"
125 physics.producers.pmtrajfit.PfpModuleLabel: "pandora"
126 
127 physics.producers.blurredcluster.HitsModuleLabel: "linecluster"
128 physics.producers.blurredcluster.TrackModuleLabel: "pmtrack"
129 physics.producers.blurredcluster.CreateDebugPDF: false
130 physics.producers.blurredcluster.MergeClusters: false
131 physics.producers.blurredcluster.GlobalTPCRecon: true
132 physics.producers.blurredcluster.ShowerReconOnly: false
133 physics.producers.blurredcluster.VertexModuleLabel: "linecluster"
134 
135 physics.producers.emshower.ClusterModuleLabel: "blurredcluster"
136 physics.producers.emshower.HitsModuleLabel: "linecluster"
137 physics.producers.emshower.TrackModuleLabel: "pmtrack"
138 
139 
140 ################################################################################
141 # Pandora
142 ################################################################################
143 physics.producers.pandora.ConfigFile: "PandoraSettings_Master_ProtoDUNE_DP.xml"
144 physics.producers.pandora.EnableLineGaps: true
145 physics.producers.pandora.EnableMCParticles: true
146 physics.producers.pandora.EnableProduction: true
147 physics.producers.pandora.GeantModuleLabel: "largeant"
148 physics.producers.pandora.HitFinderModuleLabel: "gaushit"
149 physics.producers.pandora.PrintOverallRecoStatus: false
150 physics.producers.pandora.ShouldPerformSliceId: false
151 physics.producers.pandora.ShouldRunAllHitsCosmicReco: true
152 physics.producers.pandora.ShouldRunCosmicHitRemoval: false
153 physics.producers.pandora.ShouldRunCosmicRecoOption: true
154 physics.producers.pandora.ShouldRunNeutrinoRecoOption: false
155 physics.producers.pandora.ShouldRunSlicing: true
156 physics.producers.pandora.ShouldRunStitching: false
157 physics.producers.pandora.UseGlobalCoordinates: false
158 physics.producers.pandora.UseHitWidths: true
159 physics.producers.pandoraTrack.PFParticleLabel: "pandora"
160 physics.producers.pandoraShower.PFParticleLabel: "pandora"
161 
162 
163 
164 #Optical detector configuration