EventIDFilter_t.fcl
Go to the documentation of this file.
1 # This test ensures that for a specified idsToMatch pattern, the
2 # number of events seen by a downstream analyzer (configured to only
3 # process events that pass the filter) is what is expected.
4 
5 process_name: EventFilter
6 
7 physics: {
8  filters: {
9  f1: {
10  module_type: EventIDFilter
11  idsToMatch: ["1:0:4,6"]
12  }
13  }
14  analyzers: {
15  a1: {
16  module_type: EventIDFilterChecker
17  expPassedEvents: 2
18  SelectEvents: [p1]
19  }
20  }
21  p1: [f1]
22  e1: [a1]
23 }