outputCommand_w.fcl
Go to the documentation of this file.
1 #include "messageDefaults.fcl"
2 
3 services: {
4  scheduler: # options block in the old system
5  {
6  Rethrow: ['OtherArt','StdException','Unknown','BadAlloc',
7  'BadExceptionType','ProductNotFound','DictionaryNotFound',
8  'ProductPutFailure','Configuration','LogicError','UnimplementedFeature',
9  'InvalidReference','NullPointerError','NoProductSpecified','EventTimeout',
10  'DataCorruption','ScheduleExecutionFailure','EventProcessorFailure',
11  'FileInPathError','FileOpenError','FileReadError','FatalRootError',
12  'MismatchedInputFiles','ProductDoesNotSupportViews',
13  'ProductDoesNotSupportPtr','NotFound']
14  wantSummary: true
15  }
16 }
17 
18 services.message: @local::messageDefaults
19 
20 physics: {
21  producers: {
22  m1a: {
23  module_type: IntProducer
24  ivalue: 2
25  }
26  m1b: {
27  module_type: IntProducer
28  ivalue: 7
29  }
30  m2a: {
31  module_type: DoubleProducer
32  dvalue: -1.25E-1
33  }
34  }
35 
36  p1: [ m1a, m1b, m2a ]
37  e1: [ out ]
38 }
39 
40 outputs: {
41  out: {
42  module_type: RootOutput
43  fileName: "out.root"
44  outputCommands: [ "drop *", "keep arttest::IntProduct_*_*_*" ]
45  }
46 }
47 
48 source: {
49  module_type: EmptyEvent
50  maxEvents: 20
51 }
52 
53 process_name: DEVEL