standard_reco_dune10ktdphase.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 
13 process_name: Reco
14 
15 services:
16 {
17  # Load the service that manages root files for histograms.
18  TFileService: { fileName: "hist.root" }
19  TimeTracker: {}
20  MemoryTracker: {}
21  RandomNumberGenerator: {} #ART native random number generator
22  message: @local::dune_message_services_prod_debug
23  FileCatalogMetadata: @local::art_file_catalog_mc
24  @table::dunefddphase_reco_services_legacy
25 }
26 # services.RawDigitPrepService.DoDeconvolution: false
27 
28 # services.message.destinations.LogStandardOut.threshold: "INFO"
29 
30 #source is now a root file
31 source:
32 {
33  module_type: RootInput
34  maxEvents: -1
35  fileNames: ["detsim.root"]
36 }
37 
38 # Define and configure some modules to do work on each event.
39 # First modules are defined; they are scheduled later.
40 # Modules are grouped by type.
41 physics:
42 {
43 
44  producers:
45  {
46 # random number saver
47  rns: { module_type: RandomNumberSaver }
48 # convert raw::RawDigit to recob::wire
49  caldata: @local::dunefddphase_calwire
50  # caldata: @local::producer_adcprep
51 # actual hit finder and recconstruction
52  gaushit: @local::dunefddphase_gaushitfinder
53  fasthit: @local::dunefd_fasthitfinder
54  linecluster: @local::dunefd_linecluster
55  calo: @local::dune10kt_calomc
56  pandora: @local::dunefd_pandora
57  pmtrack: @local::dunefd_pmalgtrackmaker
58  pmtrajfit: @local::dunefd_pmalgtrajfitter
59  pmtrackcalo: @local::dune10kt_calomc
60  pmtrackpid: @local::standard_chi2pid
61  blurredcluster: @local::dune10kt_blurredcluster
62  emshower: @local::dune10kt_emshower
63  }
64 
65  #define the producer and filter modules for this path, order matters,
66  #filters reject all following items. see lines starting physics.producers below
67  reco: [ rns, caldata, fasthit, gaushit, linecluster, pmtrack, pmtrackcalo, pmtrackpid, blurredcluster, emshower ]
68 
69  analyzers:
70  {
71  }
72 
73  analyzeIt: [ ]
74 
75  #define the output stream, there could be more than one if using filters
76  stream1: [ out1 ]
77 
78  #trigger_paths is a keyword and contains the paths that modify the art::event,
79  #ie filters and producers
80  trigger_paths: [reco]
81 
82  #end_paths is a keyword and contains the paths that do not modify the art::Event,
83  #ie analyzers and output streams. these all run simultaneously
84  end_paths: [stream1]
85 }
86 
87 #block to define where the output goes. if you defined a filter in the physics
88 #block and put it in the trigger_paths then you need to put a SelectEvents: {SelectEvents: [XXX]}
89 #entry in the output stream you want those to go to, where XXX is the label of the filter module(s)
90 outputs:
91 {
92  out1:
93  {
94  module_type: RootOutput
95  fileName: "%ifb_reco.root"
96  dataTier: "full-reconstructed"
97  compressionLevel: 1
98  }
99 }
100 ### Here, we overwrite ALL module labels with the ones defined above.
101 
102 physics.producers.caldata.SigThrFact: 0.2
103 
104 # physics.producers.caldata.DoGroups: false
105 
106 #PMAlg configuration
107 
108 physics.producers.pmtrackcalo.TrackModuleLabel: "pmtrack"
109 physics.producers.pmtrackcalo.SpacePointModuleLabel: "pmtrack"
110 physics.producers.pmtrackcalo.T0ModuleLabel: ""
111 physics.producers.pmtrackcalo.CaloAlg.CalAreaConstants: [ 4.966e-2, 4.966e-2 ]
112 physics.producers.pmtrackpid.CalorimetryModuleLabel: "pmtrackcalo"
113 physics.producers.pmtrackpid.TrackModuleLabel: "pmtrack"
114 
115 physics.producers.pmtrack.HitModuleLabel: "linecluster"
116 physics.producers.pmtrack.ClusterModuleLabel: "linecluster"
117 
118 physics.producers.pmtrajfit.HitModuleLabel: "linecluster"
119 physics.producers.pmtrajfit.PfpModuleLabel: "pandora"
120 
121 physics.producers.blurredcluster.HitsModuleLabel: "linecluster"
122 physics.producers.blurredcluster.TrackModuleLabel: "pmtrack"
123 physics.producers.blurredcluster.CreateDebugPDF: false
124 physics.producers.blurredcluster.MergeClusters: false
125 physics.producers.blurredcluster.GlobalTPCRecon: true
126 physics.producers.blurredcluster.ShowerReconOnly: false
127 physics.producers.blurredcluster.VertexModuleLabel: "linecluster"
128 
129 physics.producers.emshower.ClusterModuleLabel: "blurredcluster"
130 physics.producers.emshower.HitsModuleLabel: "linecluster"
131 physics.producers.emshower.TrackModuleLabel: "pmtrack"
132 
133 
134 #Pandora configurations
135 
136 #Optical detector configuration
137 
138