DBCluster3D_uboone.fcl
Go to the documentation of this file.
1 #include "services_microboone.fcl"
2 #include "SpacePointSolver.fcl"
3 #include "cluster_microboone.fcl"
4 #include "time_memory_tracker_microboone.fcl"
5 
6 process_name: RecoDB
7 
8 
9 microboone_reco_mcc8_services:
10 {
11  PhotonVisibilityService: @local::microboone_photonvisibilityservice
12  OpDigiProperties: @local::microboone_opdigiproperties
13  @table::microboone_services_reco
14 
15 }
16 microboone_reco_mcc8_services.DetectorPropertiesService.NumberTimeSamples: 6400
17 microboone_reco_mcc8_services.DetectorPropertiesService.ReadOutWindowSize: 6400
18 microboone_reco_mcc8_services.DetectorClocksService.InheritClockConfig: false
19 microboone_reco_mcc8_services.DetectorClocksService.TriggerOffsetTPC: -0.400e3
20 
21 
22 source:
23 {
24  module_type: RootInput
25  maxEvents: -1 # Number of events to create
26 }
27 
28 services:
29 {
30  TFileService: { fileName: "grads.root" }
31  TimeTracker: @local::microboone_time_tracker
32  MemoryTracker: @local::microboone_memory_tracker
33  RandomNumberGenerator: {} #ART native random number generator
34  #BackTracker: @local::microboone_backtracker
35  @table::microboone_reco_mcc8_services
36 }
37 
38 
39 # Define and configure some modules to do work on each event.
40 # First modules are defined; they are scheduled later.
41 # Modules are grouped by type.
42 physics:
43 {
44 
45  producers:
46  {
47  reco3d: @local::standard_spacepointsolver
48  dbcluster: @local::standard_dbcluster3d
49  }
50 
51 #define the producer and filter modules for this path, order matters,
52  #filters reject all following items. see lines starting physics.producers below
53  reco: [ reco3d, dbcluster ]
54 
55  #define the output stream, there could be more than one if using filters
56  stream1: [ out1 ]
57 
58  #trigger_paths is a keyword and contains the paths that modify the art::event,
59  #ie filters and producers
60  trigger_paths: [reco]
61 
62  #end_paths is a keyword and contains the paths that do not modify the art::Event,
63  #ie analyzers and output streams. these all run simultaneously
64  end_paths: [stream1]
65 }
66 
67 #block to define where the output goes. if you defined a filter in the physics
68 #block and put it in the trigger_paths then you need to put a SelectEvents: {SelectEvents: [XXX]}
69 #entry in the output stream you want those to go to, where XXX is the label of the filter module(s)
70 outputs:
71 {
72  out1:
73  {
74  module_type: RootOutput
75  fileName: "%ifb_reco.root"
76  dataTier: "full-reconstructed"
77  compressionLevel: 1
78  }
79 }
80 physics.producers.reco3d.Plots: false
81 physics.producers.reco3d.PlotsTrue: false
82 physics.producers.dbcluster.DBScan3DAlg.epsilon: 10
83 physics.producers.dbcluster.DBScan3DAlg.minpts: 2
84 physics.producers.dbcluster.HitModuleLabel: "gaushit"
85 physics.producers.dbcluster.SPHitAssnLabel: "reco3d"
86