getManyByType_t1.fcl
Go to the documentation of this file.
1 # This configuration is used to verify that getMany invoked in a
2 # module retrieves only the products that have been inserted by
3 # modules on that path (or from the source file).
4 
5 BEGIN_PROLOG
6 m1Number: 1
7 m2Number: 7
8 END_PROLOG
9 
10 physics: {
11  producers: {
12  m1: {
13  module_type: IntProducer
14  ivalue: @local::m1Number
15  }
16  m2: {
17  module_type: IntProducer
18  ivalue: @local::m2Number
19  }
20  getMany1: {
21  module_type: IntsVerifier
22  expectedValues: [@local::m1Number]
23  }
24  getMany2: {
25  module_type: IntsVerifier
26  expectedValues: [@local::m2Number]
27  }
28  }
29  p1: [m1, getMany1]
30  p2: [m2, getMany2]
31 }