|
24 | 24 | #include "Common/Core/PID/PIDTOF.h" |
25 | 25 | #include "Common/Core/TableHelper.h" |
26 | 26 |
|
27 | | -#include "CCDB/BasicCCDBManager.h" |
28 | | -#include "CommonConstants/PhysicsConstants.h" |
29 | | -#include "DataFormatsTOF/ParameterContainers.h" |
30 | | -#include "Framework/DataTypes.h" |
31 | | -#include "Framework/PID.h" |
32 | | -#include "Framework/Plugins.h" |
33 | | -#include "ReconstructionDataFormats/PID.h" |
34 | | - |
| 27 | +#include <CCDB/BasicCCDBManager.h> |
| 28 | +#include <CommonConstants/PhysicsConstants.h> |
| 29 | +#include <Framework/InitContext.h> |
| 30 | +#include <Framework/Logger.h> |
| 31 | +#include <Framework/PID.h> |
| 32 | +#include <Framework/Plugins.h> |
| 33 | +#include <ReconstructionDataFormats/PID.h> |
| 34 | + |
| 35 | +#include <cmath> |
| 36 | +#include <cstdint> |
35 | 37 | #include <string> |
36 | 38 |
|
37 | 39 | namespace o2::pid::tof |
@@ -188,7 +190,7 @@ struct TOFResponseImpl { |
188 | 190 | template <typename VType> |
189 | 191 | void getCfg(o2::framework::InitContext& initContext, const std::string name, VType& v, const std::string task) |
190 | 192 | { |
191 | | - if (!getTaskOptionValue(initContext, task, name, v, false)) { |
| 193 | + if (!o2::common::core::getTaskOptionValue(initContext, task, name, v, false)) { |
192 | 194 | LOG(fatal) << "Could not get " << name << " from " << task << " task"; |
193 | 195 | } |
194 | 196 | } |
|
0 commit comments