Skip to content

Commit 434e5e4

Browse files
Fix: remove unnessesary logging (#2760)
Co-authored-by: Anton Riedel <anton.riedel@tum.de>
1 parent 135c177 commit 434e5e4

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

PWGCF/FemtoDream/FemtoUtils.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,7 @@ bool isPIDSelected(aod::femtodreamparticle::cutContainerType const& pidcut,
5959
bool pidSelection = true;
6060
int iNsigma = getPIDselection(nSigma, vNsigma);
6161
for (auto iSpecies : vSpecies) {
62-
//\todo we also need the possibility to specify whether the bit is
63-
// true/false ->std>>vector<std::pair<int, int>>
64-
// if (!((pidcut >> it.first) & it.second)) {
6562
int bit_to_check = nSpecies * kDetector::kNdetectors * iNsigma + iSpecies * kDetector::kNdetectors + iDet;
66-
LOG(info) << "Check bit: " << bit_to_check;
6763
if (!(pidcut & (1UL << bit_to_check))) {
6864
pidSelection = false;
6965
}

PWGCF/FemtoDream/femtoDreamProducerTask.cxx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,6 @@ struct femtoDreamProducerTask {
467467
childIDs,
468468
0,
469469
0);
470-
LOG(info) << "PosChild: " << cutContainerV0.at(femtoDreamV0Selection::V0ContainerPosition::kPosPID);
471470
const int rowOfPosTrack = outputParts.lastIndex();
472471
if constexpr (isMC) {
473472
fillMCParticle(postrack, o2::aod::femtodreamparticle::ParticleType::kV0Child);
@@ -488,7 +487,6 @@ struct femtoDreamProducerTask {
488487
childIDs,
489488
0,
490489
0);
491-
LOG(info) << "NegChild: " << cutContainerV0.at(femtoDreamV0Selection::V0ContainerPosition::kNegPID);
492490
const int rowOfNegTrack = outputParts.lastIndex();
493491
if constexpr (isMC) {
494492
fillMCParticle(negtrack, o2::aod::femtodreamparticle::ParticleType::kV0Child);

0 commit comments

Comments
 (0)