protodune_cvn_eval.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: protoEval
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  cvneval: @local::standard_cvnevaluator_protodune
37  }
38 
39  # Build the paths
40  map: [ cvnmap,cvneval ]
41 
42 }
43 physics.producers.cvnmap.HitsModuleLabel: "hitpdune"
44 physics.producers.cvnmap.TrackLabel: "pandoraTrack"
45 physics.producers.cvnmap.ShowerLabel: "pandoraShower"
46 physics.producers.cvnmap.TimeResolution: 1600
47 physics.producers.cvnmap.WireLength: 2880
48 physics.producers.cvnmap.TdcWidth: 500
49 physics.producers.cvnmap.IsProtoDUNE: true
50 physics.producers.cvnmap.TrackLengthCut: 100
51 physics.producers.cvnmap.UseWholeEvent: true
52 ########################################################################
53