run_ConsolidatedPFParticleAnalysisTemplate.fcl
Go to the documentation of this file.
1 #include "services_microboone.fcl"
2 
3 process_name : ConsolidatedPFParticleAnalysisTemplate #The process name must NOT contain any underscores
4 
5 source : {
6  module_type : RootInput
7  maxEvents : -1
8  }
9 
10 services :
11 {
12 # scheduler: { defaultExceptions: false } # Make all uncaught exceptions fatal.
13  TFileService: { fileName: "ConsolidatedPFParticleAnalysisTemplate.root" }
14 }
15 
16 outputs: {
17 # optionalout: { module_type: RootOutput
18 # fileName: "output_file.root"
19 # fastCloning: false }
20 }
21 
22 physics: {
23  producers : {
24  # ParameterSets for zero or more producer modules
25  }
26  analyzers: {
27  # ParameterSets for zero or more analyzer modules
28  myana: { module_type: ConsolidatedPFParticleAnalysisTemplate
29  PandoraLabel: "pandora"
30  TrackLabel: "pandora"
31  ShowerLabel: "pandora"
32  input_param: "optional" }
33  }
34  filters : {
35  # ParameterSets for zero or more filter modules
36  }
37  path0 : [ myana ]
38 
39 #here, just a shorthand: could have done ana: [ myana ] then end_paths: [ ana ]
40  end_paths: [ path0 ]
41 
42  }