ZombieGraveyard/SdCalibratorOG/CalibrationParameters.h
Go to the documentation of this file.
1 #ifndef _SdCalibratorOG_CalibrationParameters_h_
2 #define _SdCalibratorOG_CalibrationParameters_h_
3 
4 
5 namespace SdCalibratorOG {
6 
21 
22  inline constexpr int GetSaturatedBinsMaximum(const bool isUub)
23  { return isUub ? 900 : 300; }
24 
25  inline constexpr int GetMinLength(const bool isUub)
26  { return isUub ? 120: 40; }
27 
28  inline constexpr unsigned int GetUsefulBins(const bool isUub)
29  { return isUub ? 600 : 200; }
30 
31  inline constexpr int GetLargeFADCThreshold(const bool isUub)
32  { return isUub ? 1200 : 300; }
33 
34  inline constexpr int GetMinFADCValue(const bool isUub)
35  { return isUub ? 16 : 4; }
36 
37  inline constexpr int GetFindSignalThresholdMultiplier(const bool isUub)
38  { return isUub ? 4 : 1; }
39 
40  inline constexpr int GetBinsWithLargeSignalThreshold(const bool isUub)
41  { return isUub ? 1500 : 500; }
42 
43  inline constexpr int GetBinsWithSignalThreshold(const bool isUub)
44  { return isUub ? 6 : 2; }
45 
46  inline constexpr int GetSignalMaxDist(const bool isUub)
47  { return isUub ? 60 : 20; }
48 
49  inline constexpr int GetChargeHistogramSmallThreshold(const bool isUub)
50  { return isUub ? 40 : 300; }
51 
52  inline constexpr double GetNominalVEMPeak(const bool isUub)
53  { return isUub ? 50 : 250; }
54 
55  };
56 
57 }
58 
59 
60 #endif

, generated on Tue Sep 26 2023.