eventdump.fcl
Go to the documentation of this file.
1 process_name: Dump
2 
3 services: {}
4 
5 #source is a root file
6 source:
7 {
8  module_type: RootInput
9  maxEvents: 10 # Number of events to create
10 }
11 
12 outputs:
13 {
14  out1: { module_type: FileDumperOutput
15  wantProductFullClassName: true}
16 }
17 
18 physics:
19 {
20 
21  producers:{}
22 
23  filters:{}
24 
25  analyzers:{}
26 
27  #define the output stream, there could be more than one if using filters
28  stream1: [ out1 ]
29 
30  #end_paths is a keyword and contains the paths that do not modify the art::Event,
31  #ie analyzers and output streams. these all run simultaneously
32  end_paths: [stream1]
33 }
34