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