Skip to content

Commit a55c6ed

Browse files
author
Nicolas Strangmann
committed
Add string include
1 parent c2f5d9a commit a55c6ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGEM/PhotonMeson/TableProducer/bcWiseClusterSkimmer.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include <limits>
2020
#include <vector>
2121
#include <map>
22+
#include <string>
2223

2324
#include "Framework/runDataProcessing.h"
2425
#include "Framework/AnalysisTask.h"
@@ -186,11 +187,10 @@ struct bcWiseClusterSkimmer {
186187
uint64_t timeStamp = bc.timestamp();
187188

188189
if (mRunNumber != bc.runNumber()) {
189-
std::map<string, string> metadata;
190+
std::map<std::string, std::string> metadata;
190191
mLHCIFdata = ccdbMgr.getSpecific<o2::parameters::GRPLHCIFData>("GLO/Config/GRPLHCIF", timeStamp, metadata);
191-
if (mLHCIFdata == nullptr) {
192+
if (mLHCIFdata == nullptr)
192193
LOG(fatal) << "GRPLHCIFData not in database, timestamp:" << timeStamp;
193-
}
194194
mRunNumber = bc.runNumber();
195195
LOG(info) << "LHCIF data fetched for run " << mRunNumber << " and timestamp " << timeStamp;
196196
}

0 commit comments

Comments
 (0)