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