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