TrigBits2_t.fcl
Go to the documentation of this file.
1 process_name: PROD
2 
3 services.scheduler.wantSummary: true
4 
5 source: {
6  module_type: EmptyEvent
7  maxEvents: 10
8 }
9 
10 physics: {
11  producers: {
12  m1: {
13  module_type: IntProducer
14  ivalue: 1
15  }
16  m2: {
17  module_type: IntProducer
18  ivalue: 2
19  }
20  m3: {
21  module_type: IntProducer
22  ivalue: 3
23  }
24  m4: {
25  module_type: IntProducer
26  ivalue: 4
27  }
28  m5: {
29  module_type: IntProducer
30  ivalue: 5
31  }
32  m6: {
33  module_type: IntProducer
34  ivalue: 6
35  }
36  }
37 
38  analyzers: {
39  a1: {
40  module_type: TestResultAnalyzer
41  dump: true
42  numbits: 6
43  }
44  }
45 
46  filters: {
47  f1: {
48  module_type: TestFilter
49  acceptValue: 3
50  onlyOne: true
51  }
52  f2: {
53  module_type: TestFilter
54  acceptValue: 5
55  onlyOne: true
56  }
57  f3: {
58  module_type: TestFilter
59  acceptValue: 8
60  onlyOne: true
61  }
62  }
63 
64  p1: [ f1, m1 ]
65  p2: [ f2, m2 ]
66  p3: [ f3, m3 ]
67  p4: [ m4 ]
68  p5: [ m5 ]
69  p6: [ m6 ]
70 
71  e1: [ testout1 ]
72  e2: [ a1 ]
73 }
74 
75 outputs: {
76  testout1: {
77  module_type: TestBitsOutput
78  bitMask: 1386
79  }
80 }