Skip to content

Commit 53205ce

Browse files
committed
Fix names
1 parent 6346497 commit 53205ce

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Common/TableProducer/PID/pidTOFMerge.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -658,20 +658,20 @@ struct tofEventTime {
658658
float t0A = DefaultValue;
659659
float t0C = DefaultValue;
660660
const float vertexPV = collision.posZ();
661-
static constexpr float invLightSpeedCm2NS = 1.f / o2::constants::physics::LightSpeedCm2NS;
662-
const float vertexCorr = vertexPV * invLightSpeedCm2NS;
663-
constexpr float dummyTime = 30.f; // Due to HW limitations time can be only within range (-25,25) ns, dummy time is around 32 ns
661+
static constexpr float kInvLightSpeedCm2NS = 1.f / o2::constants::physics::LightSpeedCm2NS;
662+
const float vertexCorr = vertexPV * kInvLightSpeedCm2NS;
663+
constexpr float DummyTime = 30.f; // Due to HW limitations time can be only within range (-25,25) ns, dummy time is around 32 ns
664664
if (collision.has_foundFT0()) {
665665
const auto& ft0 = collision.foundFT0();
666666
const std::bitset<8>& triggers = ft0.triggerMask();
667667
const bool ora = triggers[o2::fit::Triggers::bitA];
668668
const bool orc = triggers[o2::fit::Triggers::bitC];
669669
LOGF(debug, "triggers OrA %i OrC %i ", ora, orc);
670670
LOGF(debug, " T0A = %f, T0C %f, vertexCorr %f", ft0.timeA(), ft0.timeC(), vertexCorr);
671-
if (ora && ft0.timeA() < dummyTime) {
671+
if (ora && ft0.timeA() < DummyTime) {
672672
t0A = ft0.timeA() + vertexCorr;
673673
}
674-
if (orc && ft0.timeC() < dummyTime) {
674+
if (orc && ft0.timeC() < DummyTime) {
675675
t0C = ft0.timeC() - vertexCorr;
676676
}
677677
}

0 commit comments

Comments
 (0)