@@ -64,12 +64,12 @@ namespace o2
6464 // / It uses a sinh-based scaling function, which provides a compromise between fixed-step and relative quantization.
6565 // This approach reflects typical resolution formulas and is well-suited for detector calibration data.
6666 // /\param origValue is the original value
67- // /\param sigma0 is a asinh parameter
67+ // /\param sigma0 is a asinh parameter
6868 // /\param sigma1 is a asinh parameter
6969 // /\param clampMin is the maximum value
7070 // /\param clampMax is the minimum value
7171 // /\return The value compressed
72- int codeSqrtScaling (float origValue, float sigma0, float sigma1, int clampMin, int clampMax)
72+ int codeSqrtScaling (float origValue, float sigma0, float sigma1, int clampMin, int clampMax)
7373 {
7474 float codeF = std::asinh ((sigma1 * origValue) / sigma0) / sigma0;
7575 return std::clamp (static_cast <int >(std::round (codeF)), clampMin, clampMax);
@@ -151,17 +151,17 @@ namespace o2
151151 3.0 ,
152152 1000.0 };
153153 auto vecBinsPtTrack = std::vector<float >{BinsPtTrack, BinsPtTrack + NBinsPtTrack + 1 };
154-
154+
155155 // default values for the dca_xy and dca_z cuts of displaced tracks
156156 constexpr float CutsTrack[NBinsPtTrack][NCutVarsTrack] = {{0.0015 , 2 ., 0.0000 , 2 .}, /* 0 < pt < 0.5 */
157157 {0.0015 , 2 ., 0.0000 , 2 .}, /* 0.5 < pt < 1 */
158158 {0.0015 , 2 ., 0.0000 , 2 .}, /* 1 < pt < 1.5 */
159159 {0.0015 , 2 ., 0.0000 , 2 .}, /* 1.5 < pt < 2 */
160160 {0.0000 , 2 ., 0.0000 , 2 .}, /* 2 < pt < 3 */
161- {0.0000 , 2 ., 0.0000 , 2 .}}; /* 3 < pt < 1000 */
161+ {0.0000 , 2 ., 0.0000 , 2 .}}; /* 3 < pt < 1000 */
162162 // row labels
163163 static const std::vector<std::string> labelsPtTrack{};
164-
164+
165165 // column labels
166166 static const std::vector<std::string> labelsCutVarTrack = {" min_dcaxytoprimary" , " max_dcaxytoprimary" , " min_dcaztoprimary" , " max_dcaztoprimary" };
167167
@@ -219,8 +219,8 @@ namespace o2
219219 DECLARE_SOA_COLUMN (RunNumber, runNumber, int ); // ! Run number
220220 DECLARE_SOA_COLUMN (Orbit, orbit, uint32_t ); // ! orbit ID
221221 DECLARE_SOA_COLUMN (CentFT0C, centFT0C, uint8_t ); // ! FTOC centrality
222- DECLARE_SOA_COLUMN (OccupancyTracks, occupancyTracks, uint8_t ); // ! FT0 occupancy
223- DECLARE_SOA_COLUMN (OccupancyFT0C, occupancyFT0C, uint8_t ); // ! FT0 occupancy
222+ DECLARE_SOA_COLUMN (OccupancyTracks, occupancyTracks, uint8_t ); // ! FT0 occupancy
223+ DECLARE_SOA_COLUMN (OccupancyFT0C, occupancyFT0C, uint8_t ); // ! FT0 occupancy
224224 } // namespace hf_calib
225225
226226 DECLARE_SOA_TABLE (D0CalibColl, " AOD" , " D0CALIBCOLLS" ,
@@ -347,6 +347,6 @@ namespace o2
347347 hf_calib::PointingAngle,
348348 hf_calib::PointingAngleXY,
349349 hf_calib::DecVtxChi2);
350- } // namespace aod
350+ } // namespace aod
351351} // namespace o2
352352#endif // D0CALIBTABLES_H_
0 commit comments