Skip to content

Commit fdf265d

Browse files
committed
Please consider the following formatting changes
1 parent e59a3f8 commit fdf265d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

DataFormats/Reconstruction/include/ReconstructionDataFormats/TrackParametrization.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ constexpr float MaxPT = 100000.; // do not allow pTs exceeding
119119
constexpr float MinPTInv = 1. / MaxPT; // do not allow q/pTs less this value (to avoid NANs)
120120
constexpr float ELoss2EKinThreshInv = 1. / 0.025; // do not allow E.Loss correction step with dE/Ekin above the inverse of this value
121121
constexpr int MaxELossIter = 50; // max number of iteration for the ELoss to account for BB dependence on beta*gamma
122-
constexpr float DefaultDCA = 999.f; // default DCA value
123-
constexpr float DefaultDCACov = 999.f; // default DCA cov value
122+
constexpr float DefaultDCA = 999.f; // default DCA value
123+
constexpr float DefaultDCACov = 999.f; // default DCA cov value
124124

125125
// uncomment this to enable correction for BB dependence on beta*gamma via BB derivative
126126
// #define _BB_NONCONST_CORR_

Detectors/Base/src/Propagator.cxx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -565,8 +565,8 @@ GPUd() bool PropagatorImpl<value_T>::propagateToDCA(const o2::dataformats::Verte
565565
value_type d = math_utils::detail::abs<value_type>(x * snp - y * csp);
566566
if (d > maxD) {
567567
if (dca) { // provide default DCA for failed propag
568-
dca->set(o2::track::DefaultDCA, o2::track::DefaultDCA,
569-
o2::track::DefaultDCACov, o2::track::DefaultDCACov, o2::track::DefaultDCACov);
568+
dca->set(o2::track::DefaultDCA, o2::track::DefaultDCA,
569+
o2::track::DefaultDCACov, o2::track::DefaultDCACov, o2::track::DefaultDCACov);
570570
}
571571
return false;
572572
}
@@ -590,7 +590,7 @@ GPUd() bool PropagatorImpl<value_T>::propagateToDCA(const o2::dataformats::Verte
590590
#endif
591591
if (dca) { // provide default DCA for failed propag
592592
dca->set(o2::track::DefaultDCA, o2::track::DefaultDCA,
593-
o2::track::DefaultDCACov, o2::track::DefaultDCACov, o2::track::DefaultDCACov);
593+
o2::track::DefaultDCACov, o2::track::DefaultDCACov, o2::track::DefaultDCACov);
594594
}
595595
return false;
596596
}
@@ -622,8 +622,8 @@ GPUd() bool PropagatorImpl<value_T>::propagateToDCABxByBz(const o2::dataformats:
622622
value_type d = math_utils::detail::abs<value_type>(x * snp - y * csp);
623623
if (d > maxD) {
624624
if (dca) { // provide default DCA for failed propag
625-
dca->set(o2::track::DefaultDCA, o2::track::DefaultDCA,
626-
o2::track::DefaultDCACov, o2::track::DefaultDCACov, o2::track::DefaultDCACov);
625+
dca->set(o2::track::DefaultDCA, o2::track::DefaultDCA,
626+
o2::track::DefaultDCACov, o2::track::DefaultDCACov, o2::track::DefaultDCACov);
627627
}
628628
return false;
629629
}
@@ -646,8 +646,8 @@ GPUd() bool PropagatorImpl<value_T>::propagateToDCABxByBz(const o2::dataformats:
646646
LOG(debug) << "failed to propagate to alpha=" << alp << " X=" << xv << vtx;
647647
#endif
648648
if (dca) { // provide default DCA for failed propag
649-
dca->set(o2::track::DefaultDCA, o2::track::DefaultDCA,
650-
o2::track::DefaultDCACov, o2::track::DefaultDCACov, o2::track::DefaultDCACov);
649+
dca->set(o2::track::DefaultDCA, o2::track::DefaultDCA,
650+
o2::track::DefaultDCACov, o2::track::DefaultDCACov, o2::track::DefaultDCACov);
651651
}
652652
return false;
653653
}

0 commit comments

Comments
 (0)