prong_reco_uboone.fcl
Go to the documentation of this file.
1 #include "services_microboone.fcl"
2 #include "trackfinderservices.fcl"
3 #include "trackfindermodules.fcl"
4 #include "mccheatermodules.fcl"
5 #include "hitfindermodules.fcl"
6 
7 process_name: ProngReco
8 
9 services:
10 {
11  # Load the service that manages root files for histograms.
12  TFileService: { fileName: "spacepoint_uboone.root" }
13  scheduler: { wantTracer: true wantSummary: true }
14  TimeTracker {}
15  message: @local::standard_debug
16  RandomNumberGenerator: {} #ART native random number generator
17 }
18 
19 
20 # services from LArSoft - see definitions for configurations in
21 # geometry_microboone.fcl
22 # services_microboone.fcl
23 services.ExptGeoHelperInterface: @local::microboone_geometry_helper
24 services.Geometry: @local::microboone_geo
25 services.DetectorPropertiesService: @local::microboone_detproperties
26 services.LArPropertiesService: @local::microboone_properties
27 services.LArFFT: @local::microboone_larfft
28 services.DatabaseUtil: @local::microboone_database
29 
30 services.message.destinations.debugmsg.type: "cout"
31 services.message.destinations.debugmsg.categories.default.limit: 1000000
32 services.message.destinations.debugmsg.categories.default.reportEvery: 1
33 
34 #source is now a root file
35 source:
36 {
37  module_type: RootInput
38  maxEvents: 10 # Number of events to create
39 }
40 
41 outputs:
42 {
43  out1:
44  {
45  module_type: RootOutput
46  fileName: "prong_reco.root"
47  }
48 }
49 
50 # Define and configure some modules to do work on each event.
51 # First modules are defined; they are scheduled later.
52 # Modules are grouped by type.
53 physics:
54 {
55 
56  producers:{}
57 
58  analyzers:{}
59 
60  reco: [ spacepointcheater, spacepointfinderfilt, spacepointfinderall ]
61 
62  #define the output stream, there could be more than one if using filters
63  stream1: [ out1 ]
64 
65  #end_paths is a keyword and contains the paths that do not modify the art::Event,
66  #ie analyzers and output streams. these all run simultaneously
67  end_paths: [ stream1 ]
68 
69  #trigger_paths is a keyword and contains the paths that modify the art::event,
70  #ie filters and producers
71  trigger_paths: [reco]
72 
73 }
74 
75 physics.producers.spacepointcheater: @local::standard_spacepointcheater
76 
77 physics.producers.spacepointfinderfilt: @local::microboone_spacepoint_finder
78 physics.producers.spacepointfinderfilt.Filter: true
79 physics.producers.spacepointfinderfilt.Merge: false
80 
81 physics.producers.spacepointfinderall: @local::microboone_spacepoint_finder
82 physics.producers.spacepointfinderall.Filter: false
83 physics.producers.spacepointfinderall.Merge: false