OpticalRecoAna.fcl
Go to the documentation of this file.
1 #include "services_microboone.fcl"
2 #include "opticaldetectormodules.fcl"
3 
4 standard_opticalrecoana:
5 {
6  module_type: "OpticalRecoAna"
7  FlashModule: "null"
8  TrackModule: "null"
9  KineticEnergyMin: 0.02
10  TimeMatchMax: 100
11 }
12 
13 
14 microboone_opticalrecoana: @local::standard_opticalrecoana
15 
16 processname:OptcialRecoAnaProcess
17 
18 services:
19 {
20  # Load the service that manages root files for histograms.
21  TFileService: { fileName: "OpticalRecoAna.root" }
22  TimeTracker: {}
23  MemoryTracker: { } # default is one
24  RandomNumberGenerator: {} #ART native random number generator
25  @table::microboone_services
26 }
27 
28 #Start each new event with an empty event.
29 source:
30 {
31  maxEvents: 10 # Number of events to run over
32 }
33 
34 
35 
36 outputs:
37 {
38  out1:
39  {
40  module_type: RootOutput
41  fileName: "OpticalRecoAna.root" #default file name, can override from command line with -o or --output
42  }
43 }
44 
45 # Define and configure some modules to do work on each event.
46 # First modules are defined; they are scheduled later.
47 # Modules are grouped by type.
48 physics:
49 {
50 
51  producers:{
52 }
53 
54 # filters:{}
55 
56  trigger_paths: [ ]
57 
58  analyzers:
59  {
60  OpticalRecoAnaBezierTracks: @local::microboone_opticalrecoana
61  OpFlashAna: @local::standard_opflashana
62  }
63 
64  ana: [ OpticalRecoAnaBezierTracks, OpFlashAna ]
65 
66  #end_paths is a keyword and contains the paths that do not modify the art::Event,
67  #ie analyzers and output streams. these all run simultaneously
68  end_paths: [ ana ]
69 }
70 
71 physics.analyzers.OpticalRecoAnaBezierTracks.TrackModule: "beziertracker"
72 physics.analyzers.OpticalRecoAnaBezierTracks.FlashModule: "opflash"
73 physics.analyzers.OpFlashAna.MakeFlashTimeHist: true
74 physics.analyzers.OpFlashAna.MakeFlashPosHist: true
75 physics.analyzers.OpFlashAna.MakePerFlashHists: true