test_donothing.fcl
Go to the documentation of this file.
1 # File: test_donothing.fcl
2 # Brief: does nothing in a LArSoft-independent way
3 # Author: Gianluca Petrillo (petrillo@fnal.gov)
4 # Date: 20140618
5 # Version: 1.0
6 #
7 
8 process_name: DoNothing
9 
10 
11 services: {
12  TFileService: { fileName: "hists_donothing.root" }
13  TimeTracker: {}
14  RandomNumberGenerator: {}
15 } # services
16 
17 
18 source: {
19  module_type: EmptyEvent
20  maxEvents: 100 # Number of events to create
21  firstRun: 1 # Run number to use for this file
22  firstEvent: 1 # number of first event in the file
23 } # source
24 
25 
26 physics: {
27 
28  producers: {
29  rns: { module_type: "RandomNumberSaver" }
30  }
31 
32  idle: [ rns ]
33 
34  stream1: [ out1 ]
35 
36  trigger_paths: [ idle ]
37 
38  end_paths: [ stream1 ]
39 } # physics
40 
41 
42 outputs: {
43  out1: {
44  module_type: RootOutput
45  fileName: "donothing.root"
46  }
47 } # outputs