cvnmapeventdumpjob.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "CVNMapper.fcl"
3 #include "CVNEventDump.fcl"
4 
5 process_name: CVNMapper
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: "cvnmapper_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  }
47 
48  analyzers:
49  {
50  cvndump: @local::standard_cvneventdump
51  }
52 
53 
54  # Build the paths
55  map: [ cvnmap ]
56 
57 
58  analyze: [ cvndump ]
59 
60 
61  out: [out1]
62 
63 
64 }
65 
66 physics.producers.cvnmap.HitsModuleLabel: "hitfd"
67 physics.producers.cvnmap.TimeResolution: 1600
68 physics.producers.cvnmap.PlaneLength: 500
69 physics.analyzers.cvndump.WriteMapTH2: false
70 
71 ########################################################################