showercalibrationgalore_standard.fcl
Go to the documentation of this file.
1 #
2 # File: showercalibrationgalore_standard.fcl
3 # Brief: Standard configurations for ShowerCalibrationGalore example service
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: May 4, 2016
6 # Description:
7 # Standard configurations for the ShowerCalibrationGalore example service.
8 # Include it as:
9 #
10 # services.ShowerCalibrationGaloreService: @local::standard_shower_calibration_uniform
11 #
12 # or equivalent.
13 # Provides the following preset configurations:
14 #
15 # - standard_shower_calibration_uniform: configuration for uniform correction
16 # - standard_shower_calibration_by_particle: configuration for correction by
17 # particle ID
18 #
19 # Dependencies: none
20 #
21 #
22 
23 BEGIN_PROLOG
24 
25 # ------------------------------------------------------------------------------
26 
27 standard_shower_calibration_uniform: {
28  service_provider: "ShowerCalibrationGaloreScaleService"
29 
30  # this is the uniform shower calibration factor
31  factor: 1.0
32  error: 0.0
33 
34 } # shower_calibration_uniform
35 
36 
37 # ------------------------------------------------------------------------------
38 
39 standard_shower_calibration_by_particle: {
40  service_provider: "ShowerCalibrationGaloreFromPIDService"
41 
42  # calibration file to be found in ${FW_SEARCH_PATH}
43  CalibrationFile: @nil
44 
45 } # shower_calibration_by_particle
46 
47 
48 # ------------------------------------------------------------------------------
49 
50 END_PROLOG