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