standard_ana_dune10kt_legacy.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "AnalysisTree.fcl"
3 #include "trackfindermodules.fcl"
4 #include "showerfindermodules.fcl"
5 #include "checkrecoenergy.fcl"
6 
7 process_name: Mergeana
8 
9 services:
10 {
11  # Load the service that manages root files for histograms.
12  TFileService: { fileName: "ana_hist.root" }
13  TimeTracker: {}
14  RandomNumberGenerator: {}
15  MemoryTracker: { } # default is one
16  message: @local::dune_message_services_prod
17  FileCatalogMetadata: @local::art_file_catalog_mc
18  @table::dunefd_simulation_services_legacy
19 }
20 #services.PhotonVisibilityService: @local::dune35t_photonvisibilityservice
21 #source is now a root file
22 source:
23 {
24  module_type: RootInput
25  maxEvents: 10 # Number of events to create
26 }
27 
28 # Define and configure some modules to do work on each event.
29 # First modules are defined; they are scheduled later.
30 # Modules are grouped by type.
31 physics:
32 {
33  analyzers:
34 {
35  analysistree: @local::dune10kt_analysistree
36  pmtrackeff: @local::standard_neutrinotrackingeff
37  pmtracktceff: @local::standard_neutrinotrackingeff
38  pandoraeff: @local::standard_neutrinotrackingeff
39  pmtrajfiteff: @local::standard_neutrinotrackingeff
40  pmtrajfittceff: @local::standard_neutrinotrackingeff
41  pandorashweff: @local::standard_neutrinoshowereff
42  emshowershweff: @local::standard_neutrinoshowereff
43  trajclustershweff: @local::standard_neutrinoshowereff
44  runcheckereco: @local::dunefd_checkrecoenergy
45 }
46  #define the output stream, there could be more than one if using filters
47  stream1: [ out1 ]
48 
49  #define the producer and filter modules for this path, order matters,
50  #filters reject all following items. see lines starting physics.producers below
51  ana: [ analysistree, pmtrackeff, pmtracktceff, pandoraeff, pmtrajfiteff, pmtrajfittceff, pandorashweff, emshowershweff, trajclustershweff, runcheckereco ]
52 
53  #end_paths is a keyword and contains the paths that do not modify the art::Event,
54  #ie analyzers and output streams. these all run simultaneously
55  end_paths: [stream1,ana]
56 # end_paths: [stream1]
57 }
58 
59 #block to define where the output goes. if you defined a filter in the physics
60 #block and put it in the trigger_paths then you need to put a SelectEvents: {SelectEvents: [XXX]}
61 #entry in the output stream you want those to go to, where XXX is the label of the filter module(s)
62 outputs:
63 {
64  out1:
65  {
66  module_type: RootOutput
67  fileName: "%ifb_%tc_merged.root"
68  dataTier: "full-reconstructed"
69  compressionLevel: 1
70  }
71 }
72 
73 ### Here, we overwrite ALL module Labels with the ones defined above.
74 physics.analyzers.pmtrackeff.TrackModuleLabel: "pmtrack"
75 physics.analyzers.pmtracktceff.TrackModuleLabel: "pmtracktc"
76 physics.analyzers.pandoraeff.TrackModuleLabel: "pandoraTrack"
77 physics.analyzers.pmtrajfiteff.TrackModuleLabel: "pmtrajfit"
78 physics.analyzers.pmtrajfittceff.TrackModuleLabel: "pmtrajfittc"
79 
80 physics.analyzers.pandorashweff.HitModuleLabel: "linecluster"
81 physics.analyzers.pandorashweff.ShowerModuleLabel: "pandoraShower"
82 
83 physics.analyzers.emshowershweff.HitModuleLabel: "linecluster"
84 physics.analyzers.emshowershweff.ShowerModuleLabel: "emshower"
85 physics.analyzers.emshowershweff.CNNEMModuleLabel: "emtrkmichelid:emtrkmichel"