Skip to content

Commit 6ed4363

Browse files
iarseneIonut Cristian Arsene
andauthored
[PWGDQ] Many optimizations and warning fixes (#8637)
Co-authored-by: Ionut Cristian Arsene <iarsene@cern.ch>
1 parent ba6bf39 commit 6ed4363

File tree

5 files changed

+876
-715
lines changed

5 files changed

+876
-715
lines changed

PWGDQ/Core/HistogramManager.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
#include <iostream>
1515
#include <memory>
1616
#include <fstream>
17+
#include <list>
18+
#include <vector>
1719
#include "Framework/Logger.h"
1820
using namespace std;
1921

@@ -137,7 +139,7 @@ void HistogramManager::AddHistogram(const char* histClass, const char* hname, co
137139
}
138140
// check whether this histogram name was used before
139141
if (hList->FindObject(hname)) {
140-
LOG(warn) << "HistogramManager::AddHistogram(): Histogram " << hname << " already exists";
142+
LOG(warn) << "HistogramManager::AddHistogram(): Histogram " << hname << " already exists in class " << histClass;
141143
return;
142144
}
143145

0 commit comments

Comments
 (0)