Skip to content

Commit 3b9ad6b

Browse files
committed
clang
1 parent bfeecae commit 3b9ad6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGLF/Tasks/Strangeness/nonPromptCascade.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,13 +326,13 @@ struct NonPromptCascadeTask {
326326
}
327327
void fillMultHistos(const auto& collisions)
328328
{
329-
//std::cout << "Filling mult histos" << std::endl;
329+
// std::cout << "Filling mult histos" << std::endl;
330330
for (const auto& coll : collisions) {
331-
//std::cout << coll.centFT0M() << " mult, cent " << coll.multNTracksGlobal() << std::endl;
331+
// std::cout << coll.centFT0M() << " mult, cent " << coll.multNTracksGlobal() << std::endl;
332332
mRegistry.fill(HIST("hMultVsCent"), coll.centFT0M(), coll.multFT0M());
333333
mRegistry.fill(HIST("hMultVsCentZoom"), coll.centFT0M(), coll.multFT0M());
334-
mRegistry.fill(HIST("hNTracksVsCent"), coll.centFT0M(), (float) coll.multNTracksGlobal());
335-
mRegistry.fill(HIST("hNTracksVsCentZoom"), coll.centFT0M(), coll.multNTracksGlobal() );
334+
mRegistry.fill(HIST("hNTracksVsCent"), coll.centFT0M(), (float)coll.multNTracksGlobal());
335+
mRegistry.fill(HIST("hNTracksVsCentZoom"), coll.centFT0M(), coll.multNTracksGlobal());
336336
}
337337
};
338338

0 commit comments

Comments
 (0)