modifiers_and_observers_with_consumes.fcl
Go to the documentation of this file.
1 test_properties: {
2  graph_failure_expected: false
3 }
4 
5 process_name: test
6 
7 physics: {
8  producers: {
9  p1: {}
10  p2: { consumes: [["int", "p1"]] }
11  }
12  filters: {
13  f1: {}
14  f2: { consumes: [["int", "p2"]] }
15  }
16  analyzers: {
17  a1: {}
18  a2: { consumes: [["int", "p2"]] }
19  }
20 
21  tp: [p1, f1, p2, f2]
22  ep: [a1, a2, o1]
23 }
24 
25 outputs: {
26  o1: { consumes: [["int", "p1"], ["int", "p2"]] }
27 }