dune_cvn_eval.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "cvn_dune.fcl"
3 
4 process_name: CVNEvaluator
5 
6 services:
7 {
8  # Load the service that manages root files for histograms.
9  TFileService: { fileName: "cvn_event_dump_r%r_s%s_hist.root"
10  closeFileFast: false }
11  FileCatalogMetadata: @local::art_file_catalog_mc
12  @table::dunefd_simulation_services
13  #@table::standard_services
14 }
15 
16 # Input source is a ROOT file
17 source:
18 {
19  module_type: RootInput
20  maxEvents: -1 # Number of events to create
21 
22 }
23 
24 # Define and configure some modules to do work on each event.
25 # First modules are defined; they are scheduled later.
26 # Modules are grouped by type.
27 physics:
28 {
29  # Declare the modules
30  producers:
31  {
32  cvnmap: @local::dunefd_horizdrift_cvnmapper
33  cvneva: @local::dunefd_horizdrift_cvnevaluator
34  }
35 
36  # Build the paths
37  map: [cvnmap, cvneva ]
38 }
39 
40 ########################################################################
41