Skip to content

Commit 3e0276e

Browse files
authored
Merge pull request #29 from alibuild/alibot-cleanup-9234
[PWGLF] Please consider the following formatting changes to AliceO2Group#9234
2 parents 80bbb73 + 22cd7dd commit 3e0276e

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

PWGLF/DataModel/LFKinkDecayTables.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace kinkcand
2929

3030
DECLARE_SOA_INDEX_COLUMN_FULL(TrackMoth, trackMoth, int, TracksIU, "_Moth"); //!
3131
DECLARE_SOA_INDEX_COLUMN_FULL(TrackDaug, trackDaug, int, TracksIU, "_Daug"); //!
32-
DECLARE_SOA_INDEX_COLUMN(Collision, collision); //!
32+
DECLARE_SOA_INDEX_COLUMN(Collision, collision); //!
3333

3434
DECLARE_SOA_COLUMN(XDecVtx, xDecVtx, float); //! Decay vertex of the candidate (x direction)
3535
DECLARE_SOA_COLUMN(YDecVtx, yDecVtx, float); //! Decay vertex of the candidate (y direction)

PWGLF/TableProducer/Common/kinkBuilder.cxx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111
//
12-
/// \brief Builder task for kink decay topologies using ITS standalone tracks for the mother
12+
/// \brief Builder task for kink decay topologies using ITS standalone tracks for the mother
1313
/// \author Francesco Mazzaschi <francesco.mazzaschi@cern.ch>
1414

1515
#include <array>
@@ -412,11 +412,10 @@ struct kinkBuilder {
412412
void process(aod::Collisions const& collisions, TracksFull const& tracks, aod::AmbiguousTracks const& ambiTracks, aod::BCsWithTimestamps const& bcs)
413413
{
414414

415-
416415
kinkCandidates.clear();
417416
fillCandidateData(collisions, tracks, ambiTracks, bcs);
418417

419-
//sort kinkCandidates by collisionID to allow joining with collision table
418+
// sort kinkCandidates by collisionID to allow joining with collision table
420419
std::sort(kinkCandidates.begin(), kinkCandidates.end(), [](const kinkCandidate& a, const kinkCandidate& b) { return a.collisionID < b.collisionID; });
421420

422421
for (auto& kinkCand : kinkCandidates) {

0 commit comments

Comments
 (0)