Skip to content

Commit 95e1349

Browse files
committed
Please consider the following formatting changes
1 parent 35c31a8 commit 95e1349

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

ALICE3/TableProducer/OTF/onTheFlyTOFPID.cxx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -498,8 +498,9 @@ struct OnTheFlyTofPid {
498498

499499
float xPv = -100, trackLengthInnerTOF = -1, trackLengthOuterTOF = -1;
500500
static constexpr float xThreshold = -99.f; // Threshold to consider a good propagation of the track
501-
if (o2track.propagateToDCA(mcPvVtx, simConfig.dBz)){
502-
xPv = o2track.getX();}
501+
if (o2track.propagateToDCA(mcPvVtx, simConfig.dBz)) {
502+
xPv = o2track.getX();
503+
}
503504
if (xPv > xThreshold) {
504505
trackLengthInnerTOF = trackLength(o2track, simConfig.innerTOFRadius, simConfig.dBz);
505506
trackLengthOuterTOF = trackLength(o2track, simConfig.outerTOFRadius, simConfig.dBz);
@@ -523,8 +524,9 @@ struct OnTheFlyTofPid {
523524
// and the (imperfect!) reconstructed track parametrizations
524525
float trackLengthRecoInnerTOF = -1, trackLengthRecoOuterTOF = -1;
525526
auto recoTrack = getTrackParCov(track);
526-
if (recoTrack.propagateToDCA(pvVtx, simConfig.dBz)){
527-
xPv = recoTrack.getX();}
527+
if (recoTrack.propagateToDCA(pvVtx, simConfig.dBz)) {
528+
xPv = recoTrack.getX();
529+
}
528530
if (xPv > xThreshold) {
529531
trackLengthRecoInnerTOF = trackLength(recoTrack, simConfig.innerTOFRadius, simConfig.dBz);
530532
trackLengthRecoOuterTOF = trackLength(recoTrack, simConfig.outerTOFRadius, simConfig.dBz);

0 commit comments

Comments
 (0)