cvnmapevaluatejob.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "CVNMapper.fcl"
3 #include "CVNEvaluator.fcl"
4 
5 process_name: CVNEvaluator
6 
7 services:
8 {
9  # Load the service that manages root files for histograms.
10  TFileService: { fileName: "cvn_event_dump_r%r_s%s_hist.root"
11  closeFileFast: false }
12 
13  #@table::standard_services
14 }
15 
16 #services.BackTrackerService: @local::standard_backtrackerservice
17 
18 # Input source is a ROOT file
19 source:
20 {
21  module_type: RootInput
22  maxEvents: -1 # Number of events to create
23 
24 }
25 
26 outputs:
27 {
28  out1:
29  {
30  module_type: RootOutput
31  fileName: "cvnevaluator_r%r_s%s.root"
32  fastCloning: false
33  dataTier: "full-reconstructed"
34  }
35 }
36 
37 # Define and configure some modules to do work on each event.
38 # First modules are defined; they are scheduled later.
39 # Modules are grouped by type.
40 physics:
41 {
42  # Declare the modules
43  producers:
44  {
45  cvnmap: @local::standard_cvnmapper
46  cvneval: @local::standard_cvnevaluator
47  }
48 
49  # Build the paths
50  map: [ cvnmap, cvneval ]
51 
52  out: [out1]
53 
54 
55 }
56 
57 physics.producers.cvnmap.HitsModuleLabel: "hitfd"
58 physics.producers.cvnmap.TimeResolution: 1600
59 physics.producers.cvnmap.PlaneLength: 500
60 physics.producers.cvnmap.TdcWidth: 500
61 
62 ########################################################################