dune_cvn_event_dump_fhc.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "CVNMapper.fcl"
3 #include "CVNEventDump.fcl"
4 #include "energyreco.fcl"
5 
6 process_name: CVNMapper
7 
8 services:
9 {
10  # Load the service that manages root files for histograms.
11  TFileService: { fileName: "cvn_event_dump_r%r_s%s_hist.root"
12  closeFileFast: false }
13  FileCatalogMetadata: @local::art_file_catalog_mc
14  @table::dunefd_simulation_services
15  #@table::standard_services
16 }
17 
18 #services.BackTracker: @local::standard_backtracker
19 
20 # Input source is a ROOT file
21 source:
22 {
23  module_type: RootInput
24  maxEvents: -1 # Number of events to create
25 
26 }
27 
28 # Define and configure some modules to do work on each event.
29 # First modules are defined; they are scheduled later.
30 # Modules are grouped by type.
31 physics:
32 {
33  # Declare the modules
34  producers:
35  {
36  energynue: @local::dunefd_nuenergyreco
37  energynumu: @local::dunefd_nuenergyreco
38  cvnmap: @local::standard_cvnmapper
39  }
40 
41  analyzers:
42  {
43  cvndump: @local::standard_cvneventdump_fhc
44  }
45 
46 
47  # Build the paths
48  map: [ energynue, energynumu, cvnmap ]
49  analyze: [ cvndump ]
50 
51 }
52 
53 # Get nue and numu hypothesis energy for each event
54 physics.producers.energynue.RecoMethod: 2
55 physics.producers.energynumu.RecoMethod: 1
56 
57 physics.producers.cvnmap.HitsModuleLabel: "hitfd"
58 physics.producers.cvnmap.TimeResolution: 1600
59 physics.producers.cvnmap.WireLength: 2880
60 physics.producers.cvnmap.TdcWidth: 500
61 physics.analyzers.cvndump.WriteMapTH2: true
62 physics.analyzers.cvndump.ApplyFidVol: true
63 ########################################################################
64