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 }
11 
12 # Define the services
13 
14 #Look at the input files
15 source:
16 {
17  module_type: RootInput
18  fileNames: [ "data.root" ]
19  maxEvents: -1 # Number of events to create
20 }
21 
22 outputs:{}
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 
30  producers: {}
31 
32  filters:{}
33 
34  analyzers:
35  {
36  evdisp:{module_type: EVD}
37  }
38 
39  #list the modules for this path, order matters, filters reject all following items
40  evd: [ evdisp ]
41 
42  #end_path are things that do not modify art::Event, includes analyzers
43  #and output modules. all items here can be run simultaneously
44  end_paths: [evd]
45 }