lartest.fcl
Go to the documentation of this file.
1 #include "geometry.fcl"
2 #include "detectorproperties.fcl"
3 #include "larproperties.fcl"
4 #include "detectorclocks.fcl"
5 
6 process_name: LArPropTest
7 
8 services:
9 {
10  ExptGeoHelperInterface: @local::standard_geometry_helper
11  GeometryConfigurationWriter: {}
12  Geometry: @local::standard_geo
13  DetectorPropertiesService: @local::standard_detproperties
14  LArPropertiesService: @local::standard_properties
15  DetectorClocksService: @local::standard_detectorclocks
16 }
17 
18 source:
19 {
20  module_type: EmptyEvent
21  maxEvents: 0 # Number of events to create
22 }
23 
24 outputs:
25 {
26 }
27 
28 physics:
29 {
30 
31  analyzers:
32  {
33  lartest: { module_type: "LArPropTest" }
34  }
35 
36  #define the path for analyzer modules, order does not matter.
37  #see lines starting physics.analyzers below
38  ana: [ lartest ]
39 
40  #trigger_paths is a keyword and contains the paths that modify the art::event,
41  #ie filters and producers
42  trigger_paths: [ ]
43 
44  #end_paths is a keyword and contains the paths that do not modify the art::Event,
45  #ie analyzers and output streams. these all run simultaneously
46  end_paths: [ana]
47 }
48 
49 physics.analyzers.lartest:
50 {
51  module_type: "LArPropTest"
52 }