servicepacktest.fcl
Go to the documentation of this file.
1 #
2 # File: servicepacktest.fcl
3 # Purpose: run ServicePack art-based tests
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: November 23, 2015
6 # Version: 1.0
7 #
8 # Description:
9 # Runs ServicePack art-based tests on "standard" LArTPC detector configuration.
10 #
11 # Service dependencies:
12 # * Geometry
13 # * LArPropertiesService
14 # * DetectorClocksService
15 # * DetectorPropertiesService
16 #
17 # History:
18 # 20151123 (petrillo@fnal.gov) [v1.0]
19 # original version
20 #
21 
22 #include "geometry_lartpcdetector.fcl"
23 #include "detectorproperties_lartpcdetector.fcl"
24 #include "larproperties_lartpcdetector.fcl"
25 #include "detectorclocks_lartpcdetector.fcl"
26 
27 process_name: ServicePackTest
28 
29 
30 services: {
31  @table::lartpcdetector_geometry_services # geometry_lartpcdetector.fcl
32  LArPropertiesService: @local::lartpcdetector_properties # larproperties_lartpcdetector.fcl
33  DetectorClocksService: @local::lartpcdetector_detectorclocks # detectorclocks_lartpcdetector.fcl
34  DetectorPropertiesService: @local::lartpcdetector_detproperties # detectorproperties_lartpcdetector.fcl
35 } # services
36 
37 
38 source: {
39  module_type: EmptyEvent
40  maxEvents: 0 # Number of events to create
41 } # source
42 
43 
44 physics: {
45 
46  analyzers: {
47  sptest: { module_type: "ServicePackTest" }
48  }
49 
50  #define the path for analyzer modules, order does not matter.
51  tests: [ sptest ]
52 
53  trigger_paths: [ ]
54  end_paths: [ tests ]
55 
56 } # physics