protodune_cvn_event_dump.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  FileCatalogMetadata: @local::art_file_catalog_mc
13  @table::protodune_simulation_services
14  #@table::standard_services
15 }
16 
17 #services.BackTracker: @local::standard_backtracker
18 
19 # Input source is a ROOT file
20 source:
21 {
22  module_type: RootInput
23  maxEvents: -1 # Number of events to create
24 
25 }
26 
27 # Define and configure some modules to do work on each event.
28 # First modules are defined; they are scheduled later.
29 # Modules are grouped by type.
30 physics:
31 {
32  # Declare the modules
33  producers:
34  {
35  cvnmap: @local::standard_cvnmapper_protodune
36  }
37 
38  analyzers:
39  {
40  cvndump: @local::standard_cvneventdump_protodune
41  }
42 
43  # Build the paths
44  map: [ cvnmap ]
45  analyze: [ cvndump ]
46 
47 }
48 
49 physics.producers.cvnmap.HitsModuleLabel: "hitpdune"
50 physics.producers.cvnmap.TrackLabel: "pandoraTrack"
51 physics.producers.cvnmap.ShowerLabel: "pandoraShower"
52 physics.producers.cvnmap.TimeResolution: 1600
53 physics.producers.cvnmap.WireLength: 2880
54 physics.producers.cvnmap.TdcWidth: 500
55 physics.producers.cvnmap.IsProtoDUNE: true
56 physics.producers.cvnmap.TrackLengthCut: 100
57 physics.producers.cvnmap.UseWholeEvent: true
58 physics.analyzers.cvndump.WriteMapTH2: false
59 ########################################################################
60