Skip to content

Commit 945c05b

Browse files
committed
Fix incomplete paths. Pass by const ref.
1 parent 8a4dbc9 commit 945c05b

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

Common/TableProducer/multiplicityTable.cxx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@
1515
/// \author ALICE
1616
///
1717

18-
#include "MetadataHelper.h"
19-
#include "TableHelper.h"
20-
2118
#include "PWGMM/Mult/DataModel/bestCollisionTable.h"
2219

20+
#include "Common/Core/MetadataHelper.h"
21+
#include "Common/Core/TableHelper.h"
2322
#include "Common/DataModel/EventSelection.h"
2423
#include "Common/DataModel/Multiplicity.h"
2524
#include "Common/DataModel/TrackSelectionTables.h"

Common/Tools/EventSelectionTools.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@
1919
#define bitcheck(var, nbit) ((var) & (static_cast<uint32_t>(1) << (nbit)))
2020
#define bitcheck64(var, nbit) ((var) & (static_cast<uint64_t>(1) << (nbit)))
2121

22-
#include "MetadataHelper.h"
23-
#include "TableHelper.h"
24-
2522
#include "Common/CCDB/EventSelectionParams.h"
2623
#include "Common/CCDB/TriggerAliases.h"
24+
#include "Common/Core/MetadataHelper.h"
25+
#include "Common/Core/TableHelper.h"
2726
#include "Common/DataModel/EventSelection.h"
2827

2928
#include <CCDB/BasicCCDBManager.h>

Common/Tools/MultModule.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@
1616
#ifndef COMMON_TOOLS_MULTMODULE_H_
1717
#define COMMON_TOOLS_MULTMODULE_H_
1818

19-
#include "TableHelper.h"
20-
2119
#include "PWGMM/Mult/DataModel/bestCollisionTable.h"
2220

2321
#include "Common/Core/TPCVDriftManager.h"
22+
#include "Common/Core/TableHelper.h"
2423
#include "Common/DataModel/Centrality.h"
2524
#include "Common/DataModel/Multiplicity.h"
2625

Common/Tools/PID/handleParamBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ void setStandardOpt(bpo::options_description& options)
8484
template <typename T>
8585
T* retrieveFromCCDB(const std::string& path,
8686
const int64_t timestamp,
87-
std::map<std::string, std::string> metadata)
87+
const std::map<std::string, std::string>& metadata)
8888
{
8989
std::map<std::string, std::string> headers;
9090
LOG(info) << "Object " << path << " for timestamp " << timestamp << " -> " << timeStampToHReadble(timestamp);

0 commit comments

Comments
 (0)