evd_dune34kt.fcl
Go to the documentation of this file.
1 #include "evdservices_dune.fcl"
2 
3 process_name: EVD
4 
5 services:
6 {
7  message: @local::evd_message
8  @table::dune34kt_disp
9 }
10 
11 # Define the services
12 
13 #Look at the input files
14 source:
15 {
16  module_type: RootInput
17  fileNames: [ "single_gen.root" ]
18  maxEvents: -1 # Number of events to create
19 }
20 
21 outputs:{}
22 
23 # Define and configure some modules to do work on each event.
24 # First modules are defined; they are scheduled later.
25 # Modules are grouped by type.
26 physics:
27 {
28 
29  producers: {}
30 
31  filters:{}
32 
33  analyzers:
34  {
35  evdisp:{module_type: EVD}
36  }
37 
38  #list the modules for this path, order matters, filters reject all following items
39  evd: [ evdisp ]
40 
41  #end_path are things that do not modify art::Event, includes analyzers
42  #and output modules. all items here can be run simultaneously
43  end_paths: [evd]
44 }