test_chargedspacepointproxy.fcl
Go to the documentation of this file.
1 #
2 # File: test_chargedspacepointproxy.fcl
3 # Purpose: exercise the proxy::ChargedSpacePoints proxy
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: December 20, 2017
6 # Version: 1.0
7 #
8 # Run with `lar_ut`!
9 #
10 
11 process_name: ChargedSpacePointProxyTest
12 
13 
14 source: {
15  module_type: EmptyEvent
16  maxEvents: 2
17 } # source
18 
19 
20 physics: {
21 
22  producers: {
23 
24  pointmaker: {
25 
26  module_type: ChargedSpacePointProxyInputMaker
27 
28  nPoints: 5
29 
30  } # pointmaker
31 
32  } # producers
33 
34  analyzers: {
35  pointproxytest: {
36  module_type: ChargedSpacePointProxyTest
37 
38  points: pointmaker
39 
40  }
41  } # analyzers
42 
43  reco: [ pointmaker ]
44  tests: [ pointproxytest ]
45 
46  trigger_paths: [ reco ]
47  end_paths: [ tests ]
48 
49 } # physics