test_shower_calibration_from_pid.fcl
Go to the documentation of this file.
1 #
2 # File: test_shower_calibration_from_pid.fcl
3 # Brief: Test for ShowerCalibrationGaloreFromPIDService
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: May 4, 2016
6 # Description:
7 # Test for ShowerCalibrationGaloreService example service using the
8 # ShowerCalibrationGaloreFromPIDService implementation.
9 #
10 # Dependencies:
11 #
12 #
13 
14 #include "showercalibrationgalore_standard.fcl"
15 
16 process_name: ShowerCalibrationGaloreFromPIDServiceTest
17 
18 
19 services: {
20  ShowerCalibrationGaloreService: @local::standard_shower_calibration_by_particle
21 } # services
22 
23 # we need to specify a calibration file
24 services.ShowerCalibrationGaloreService.CalibrationFile: "examples/CalibrationExample.root:Shower"
25 
26 source: {
27  module_type: EmptyEvent
28  maxEvents: 1
29 }
30 
31 outputs: {}
32 
33 physics: {
34  analyzers: {
35 
36  showercalibrationtest: {
37  module_type: ShowerCalibrationGaloreTest
38 
39  Emin: 0.0
40  Emax: 2.5
41  Estep: 0.1
42  PID: [ 11, -11, 13, -13, 211, 111, 2112, 2212, 22, 0 ]
43  }
44 
45  } # analyzers
46 
47  tests: [ showercalibrationtest ]
48 
49  trigger_paths: []
50  end_paths: [ tests ]
51 
52 } # physics
53