Skip to content

Commit a8376bd

Browse files
authored
[PWGUD] decrease more log (#14113)
1 parent 8ae3d18 commit a8376bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGUD/Tasks/flowCumulantsUpc.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -976,11 +976,11 @@ struct FlowCumulantsUpc {
976976
independent = static_cast<float>(groupedUDMcParticles.size());
977977
}
978978

979-
LOG(info) << "mcParticles.size() = " << groupedUDMcParticles.size() << std::endl;
979+
// LOG(info) << "mcParticles.size() = " << groupedUDMcParticles.size() << std::endl;
980980

981981
for (const auto& mcParticle : groupedUDMcParticles) {
982982

983-
LOG(info) << "filling mc particle px: " << mcParticle.px() << ", py: " << mcParticle.py() << ", pz: " << mcParticle.pz() << std::endl;
983+
// LOG(info) << "filling mc particle px: " << mcParticle.px() << ", py: " << mcParticle.py() << ", pz: " << mcParticle.pz() << std::endl;
984984

985985
// output information from mcparticles
986986
registry.fill(HIST("hPxMc"), mcParticle.px());
@@ -989,7 +989,7 @@ struct FlowCumulantsUpc {
989989
registry.fill(HIST("hweightMc"), mcParticle.weight());
990990

991991
if (!mcParticle.isPhysicalPrimary()) {
992-
LOG(info) << "mcParticle.isPhysicalPrimary() = " << mcParticle.isPhysicalPrimary() << std::endl;
992+
// LOG(info) << "mcParticle.isPhysicalPrimary() = " << mcParticle.isPhysicalPrimary() << std::endl;
993993
continue;
994994
}
995995

@@ -999,7 +999,7 @@ struct FlowCumulantsUpc {
999999
constexpr double kEtaCut = 0.8;
10001000
constexpr double kPtCut = 0.1;
10011001
if (!(std::fabs(protoMC.Eta()) < kEtaCut && protoMC.Pt() > kPtCut)) {
1002-
LOG(info) << "protoMC.Eta() = " << protoMC.Eta() << ", protoMC.Pt() = " << protoMC.Pt() << std::endl;
1002+
// LOG(info) << "protoMC.Eta() = " << protoMC.Eta() << ", protoMC.Pt() = " << protoMC.Pt() << std::endl;
10031003
continue;
10041004
}
10051005
// auto momentum = std::array<double, 3>{mcParticle.px(), mcParticle.py(), mcParticle.pz()};

0 commit comments

Comments
 (0)