test_config_fail.fcl
Go to the documentation of this file.
1 services:
2 {
3  # Always-present services; configuration optional.
4  message: [ 52, ]
5  floating_point_control: { }
6 
7  scheduler: # options block in the old system
8  {
9  Rethrow: [['OtherArt','StdException','Unknown','BadAlloc',
10  'BadExceptionType','ProductNotFound','DictionaryNotFound',
11  'InsertFailure','Configuration','LogicError','UnimplementedFeature',
12  'InvalidReference','NullPointerError','NoProductSpecified','EventTimeout',
13  'EventCorruption','ScheduleExecutionFailure','EventProcessorFailure',
14  'FileInPathError','FileOpenError','FileReadError','FatalRootError',
15  'MismatchedInputFiles','ProductDoesNotSupportViews',
16  'ProductDoesNotSupportPtr','NotFound']
17  # Ignore: []
18  wantSummary: true
19  # wantTracer: true
20  # fileMode: ""
21  # handleEmptyRuns: true
22  # handleEmptySubRuns: true
23  # enableSigInt: true
24  # unloadRootSigHandler: false
25  # resetRootErrHandler: true
26  }
27 
28  # These are provided by Art, but are not system services and therefore
29  # need to be configured to come to life.
30  Timing: { }
31  SimpleMemoryCheck: { }
32  TFileService: { fileName: "tfile_output.root" }
33 
34  user:
35  {
36  # user-defined, plugin services
37  }
38 }
39 
40 physics:
41 {
42  producers:
43  {
44  m1a:
45  {
46  module_type: IntProducer
47  ivalue: 1
48  }
49  }
50 
51  analyzers:
52  {
53  a1:
54  {
55  module_type: IntTestAnalyzer
56  input_label: m1a
57  expected_value: 1
58  }
59  }
60 
61  filters:
62  {
63  }
64  p1: [ m1a ]
65  e1: [ a1, out1 ]
66 
67  trigger_paths: [ p1 ]
68  end_paths: [ e1 ]
69 }
70 
71 outputs:
72 {
73  out1:
74  {
75  module_type: RootOutput
76  fileName: "out.root"
77  }
78 }
79 
80 source:
81 {
82  module_type: EmptyEvent
83 
84  # were in the global area before
85  maxEvents: 10
86  # maxSubRuns: 2
87 }
88 
89 process_name: DEVEL