Skip to content

Commit d8a52e2

Browse files
committed
Remove trailing whitespace
1 parent f70c29f commit d8a52e2

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

DPG/Tasks/AOTTrack/D0CalibTables.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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_

DPG/Tasks/AOTTrack/derivedDataCreatorD0Calibration.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ struct HfDerivedDataCreatorD0Calibration {
8787
Preslice<aod::TrackAssoc> trackIndicesPerCollision = aod::track_association::collisionId;
8888

8989
o2::vertexing::DCAFitterN<2> df; // 2-prong vertex fitter
90-
Service<o2::ccdb::BasicCCDBManager> ccdb;
90+
Service<o2::ccdb::BasicCCDBManager> ccdb;
9191

9292
TrackSelectorPi selectorPion;
9393
TrackSelectorKa selectorKaon;
@@ -204,7 +204,7 @@ struct HfDerivedDataCreatorD0Calibration {
204204
if (!isSelectedTrackDca(cfgTrackCuts.binsPt, cfgTrackCuts.limitsDca, trackParCovNeg.getPt(), dcaNeg.getY(), dcaNeg.getZ())) {
205205
continue;
206206
}
207-
207+
208208
int pidTrackNegKaon{-1};
209209
int pidTrackNegPion{-1};
210210
if (cfgTrackCuts.usePidTpcOnly) {

0 commit comments

Comments
 (0)