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: {
15  module_type: FileDumperOutput
16  wantProductFullClassName: true
17  wantProductFriendlyClassName: false
18  }
19 }
20 
21 physics:
22 {
23 
24  producers:{}
25 
26  filters:{}
27 
28  analyzers:{}
29 
30  #define the output stream, there could be more than one if using filters
31  stream1: [ out1 ]
32 
33  #end_paths is a keyword and contains the paths that do not modify the art::Event,
34  #ie analyzers and output streams. these all run simultaneously
35  end_paths: [stream1]
36 }
37