Skip to content

Commit c4d6505

Browse files
committed
Formatting fixes
1 parent 79d59ac commit c4d6505

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

PWGUD/TableProducer/SGCandProducer.cxx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
/// \brief Produces PWGUD derived table from standard tables
1414
///
1515
/// \author Alexander Bylinkin <roman.lavicka@cern.ch>, University of Bergen
16-
/// \since 23.11.2023
16+
/// \since 23.11.2023
1717
/// \author Adam Matyja <adam.tomasz.matyja@cern.ch>, INP PAN Krakow, Poland
18-
/// \since May 2025
18+
/// \since May 2025
1919
//
2020

2121
#include "PWGUD/Core/FITCutParHolder.h"
@@ -100,7 +100,7 @@ struct SGCandProducer {
100100
Configurable<bool> fillTrackTables{"fillTrackTables", true, "Fill track tables"};
101101
Configurable<bool> fillFwdTrackTables{"fillFwdTrackTables", true, "Fill forward track tables"};
102102

103-
// SG selector
103+
// SG selector
104104
SGSelector sgSelector;
105105
ctpRateFetcher mRateFetcher;
106106

@@ -219,7 +219,7 @@ struct SGCandProducer {
219219
aod::FV0As const& fv0as, aod::FT0s const& ft0s, aod::FDDs const& fdds)
220220
{
221221
if (verboseInfo)
222-
LOGF(debug, "<SGCandProducer> collision %d", collision.globalIndex());
222+
LOGF(debug, "<SGCandProducer> collision %d", collision.globalIndex());
223223
getHist(TH1, histdir + "/Stat")->Fill(0., 1.);
224224
// reject collisions at TF boundaries
225225
if (rejectAtTFBoundary && !collision.selection_bit(aod::evsel::kNoTimeFrameBorder)) {
@@ -357,7 +357,7 @@ struct SGCandProducer {
357357
} else if (saveAllTracks) {
358358
if (track.itsClusterSizes() && track.itsChi2NCl() > 0 && ((track.tpcNClsFindable() == 0 && savenonPVCITSOnlyTracks) || track.tpcNClsFindable() > 50))
359359
updateUDTrackTables(outputCollisions.lastIndex(), track, bc.globalBC());
360-
// if (track.isPVContributor()) updateUDTrackTables(outputCollisions.lastIndex(), track, bc.globalBC());
360+
// if (track.isPVContributor()) updateUDTrackTables(outputCollisions.lastIndex(), track, bc.globalBC());
361361
}
362362
}
363363
}
@@ -542,7 +542,7 @@ struct McSGCandProducer {
542542
for (const auto& oldmid : oldmids) {
543543
auto m = McParts.rawIteratorAt(oldmid);
544544
if (verboseInfoMC)
545-
LOGF(debug, " m %d", m.globalIndex());
545+
LOGF(debug, "m %d", m.globalIndex());
546546
if (mcPartIsSaved.find(oldmid) != mcPartIsSaved.end()) {
547547
newval = mcPartIsSaved[oldmid];
548548
} else {
@@ -688,7 +688,7 @@ struct McSGCandProducer {
688688
if (mcsgId >= 0 && mcOfInterest) {
689689
if (mcColIsSaved.find(mcsgId) == mcColIsSaved.end()) {
690690
if (verboseInfoMC)
691-
LOGF(info, " Saving McCollision %d", mcsgId);
691+
LOGF(info, "Saving McCollision %d", mcsgId);
692692
// update UDMcCollisions
693693
auto sgcandMcCol = sgcand.collision_as<CCs>().mcCollision();
694694
updateUDMcCollisions(sgcandMcCol, globBC);
@@ -709,7 +709,7 @@ struct McSGCandProducer {
709709
// If the sgcand has no associated McCollision then only the McParticles which are associated
710710
// with the tracks of the sgcand are saved
711711
if (verboseInfoMC)
712-
LOGF(info, " Saving McCollision %d", -1);
712+
LOGF(info, "Saving McCollision %d", -1);
713713

714714
// update UDMcColsLabels (for each UDCollision -> UDMcCollisions)
715715
outputMcCollsLabels(-1);
@@ -751,7 +751,7 @@ struct McSGCandProducer {
751751
// but only consider generated events of interest
752752
if (mcOfInterest && mcColIsSaved.find(mccolId) == mcColIsSaved.end()) {
753753
if (verboseInfoMC)
754-
LOGF(info, " Saving McCollision %d", mccolId);
754+
LOGF(info, "Saving McCollision %d", mccolId);
755755
// update UDMcCollisions
756756
updateUDMcCollisions(mccol, globBC);
757757
mcColIsSaved[mccolId] = outputMcCollisions.lastIndex();
@@ -795,7 +795,7 @@ struct McSGCandProducer {
795795
// update UDMcCollisions and UDMcParticles
796796
if (mcColIsSaved.find(mccolId) == mcColIsSaved.end()) {
797797
if (verboseInfoMC)
798-
LOGF(info, " Saving McCollision %d", mccolId);
798+
LOGF(info, "Saving McCollision %d", mccolId);
799799

800800
// update UDMcCollisions
801801
updateUDMcCollisions(mccol, globBC);

0 commit comments

Comments
 (0)