test_failingProducer_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: 1
25  }
26  }
27 
28  analyzers: {
29  a1: {
30  module_type: IntTestAnalyzer
31  input_label: m1a
32  expected_value: 1
33  }
34  }
35 
36  p1: [ m1a ]
37  e1: [ a1, out1 ]
38 }
39 
40 outputs: {
41  out1: {
42  module_type: RootOutput
43  fileName: "out.root"
44  }
45 }
46 
47 source: {
48  module_type: EmptyEvent
49  maxEvents: 10
50 }
51 
52 process_name: DEVEL