Skip to content

Commit 4c43f6f

Browse files
committed
Remove debug prints
1 parent c64481f commit 4c43f6f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

PWGDQ/Tasks/myDitracksAnalyzer.cxx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ struct myDitracksAnalyzer {
3838
HistogramRegistry histos{"histos", {}, OutputObjHandlingPolicy::AnalysisObject};
3939
// Map to track how many times an event has been encountered
4040
std::map<int32_t, int8_t> fEventCount;
41-
int64_t ditracksCounter;
4241

4342
void init(InitContext const&)
4443
{
@@ -66,12 +65,8 @@ struct myDitracksAnalyzer {
6665

6766
void process(myDitracks const& ditracks)
6867
{
69-
LOGF(info, "last loop we accessed %d ditracks", ditracksCounter);
70-
ditracksCounter = 0;
71-
LOGF(info, "ditracks has %d entries", ditracks.size());
7268
fEventCount.clear();
7369
for (auto& ditrack : ditracks) {
74-
ditracksCounter++;
7570
// Only process pairs with correct charge
7671
if (ditrack.sign() != fConfigPairSign.value) {
7772
continue;

0 commit comments

Comments
 (0)