You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DataFormats/Detectors/TRD/include/DataFormatsTRD/Constants.h
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -75,11 +75,11 @@ constexpr int TIMEBINS = 30; ///< the number of time bins
75
75
constexprfloatMAXIMPACTANGLE = 25.f; ///< the maximum impact angle for tracks relative to the TRD detector plane to be considered for vDrift and ExB calibration
76
76
constexprintNBINSANGLEDIFF = 25; ///< the number of bins for the track angle used for the vDrift and ExB calibration based on the tracking
77
77
constexprdoubleVDRIFTDEFAULT = 1.546; ///< default value for vDrift
78
-
constexprdoubleVDRIFTMIN = 0.01; ///< min value for vDrift
79
-
constexprdoubleVDRIFTMAX = 3.0; ///< max value for vDrift
78
+
constexprdoubleVDRIFTMIN = 0.4; ///< min value for vDrift
79
+
constexprdoubleVDRIFTMAX = 2.0; ///< max value for vDrift
80
80
constexprdoubleEXBDEFAULT = 0.0; ///< default value for LorentzAngle
81
-
constexprdoubleEXBMIN = -0.7; ///< min value for LorentzAngle
82
-
constexprdoubleEXBMAX = 0.7; ///< max value for LorentzAngle
81
+
constexprdoubleEXBMIN = -0.4; ///< min value for LorentzAngle
82
+
constexprdoubleEXBMAX = 0.4; ///< max value for LorentzAngle
83
83
constexprintNBINSGAINCALIB = 320; ///< number of bins in the charge (Q0+Q1+Q2) histogram for gain calibration
84
84
constexprfloatMPVDEDXDEFAULT = 42.; ///< default Most Probable Value of TRD dEdx
85
85
constexprfloatT0DEFAULT = 1.2; ///< default value for t0
Copy file name to clipboardExpand all lines: Detectors/TRD/calibration/include/TRDCalibration/CalibratorVdExB.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -88,8 +88,8 @@ class CalibratorVdExB final : public o2::calibration::TimeSlotCalibration<o2::tr
88
88
private:
89
89
boolmInitDone{false}; ///< flag to avoid creating the TProfiles multiple times
90
90
const TRDCalibParams& mParams{TRDCalibParams::Instance()}; ///< reference to calibration parameters
91
-
size_tmMinEntriesTotal{mParams.minEntriesChamber}; ///< minimum total number of angular deviations (on average ~3 entries per bin for each TRD chamber)
92
-
size_tmMinEntriesChamber{mParams.minEntriesTotal}; ///< minimum number of angular deviations per chamber for accepting refitted value (~3 per bin)
91
+
size_tmMinEntriesTotal{mParams.minEntriesTotal}; ///< minimum total number of angular deviations (on average ~3 entries per bin for each TRD chamber)
92
+
size_tmMinEntriesChamber{mParams.minEntriesChamber}; ///< minimum number of angular deviations per chamber for accepting refitted value (~3 per bin)
93
93
boolmEnableOutput{false}; ///< enable output of calibration fits and tprofiles in a root file instead of the ccdb
0 commit comments