test_simple_01.fcl
Go to the documentation of this file.
1 #include "messageDefaults.fcl"
2 
3 services: {
4  FloatingPointControl: {}
5  Tracer: {}
6  scheduler: {
7  Rethrow: ['OtherArt','StdException','Unknown','BadAlloc',
8  'BadExceptionType','ProductNotFound','DictionaryNotFound',
9  'ProductPutFailure','Configuration','LogicError','UnimplementedFeature',
10  'InvalidReference','NullPointerError','NoProductSpecified','EventTimeout',
11  'DataCorruption','ScheduleExecutionFailure','EventProcessorFailure',
12  'FileInPathError','FileOpenError','FileReadError','FatalRootError',
13  'MismatchedInputFiles','ProductDoesNotSupportViews',
14  'ProductDoesNotSupportPtr','NotFound']
15  }
16 
17  TFileService: { fileName: "tfile_output.root" }
18  message: @local::messageDefaults
19 }
20 
21 physics: {
22  producers: {
23  m1a: {
24  module_type: IntProducer
25  ivalue: 1
26  }
27  }
28 
29  analyzers: {
30  a1: {
31  module_type: IntTestAnalyzer
32  input_label: m1a
33  expected_value: 1
34  }
35 
36  hist: {
37  module_type: TestTFileService
38  }
39  }
40 
41  p1: [m1a]
42  e1: [a1, hist, out1]
43 }
44 
45 outputs.out1: {
46  module_type: RootOutput
47  fileName: "out.root"
48 }
49 
50 source: {
51  module_type: EmptyEvent
52  maxEvents: 10
53 }
54 
55 process_name: DEVEL