Skip to content

Commit 3b8b7c5

Browse files
committed
decrease more log
1 parent 43f7419 commit 3b8b7c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGUD/Tasks/flowCumulantsUpc.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ struct FlowCumulantsUpc {
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());
@@ -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)