12#ifndef ALICEO2_FIT_LOOKUPTABLE_H_
13#define ALICEO2_FIT_LOOKUPTABLE_H_
21#define BOOST_BIND_GLOBAL_PLACEHOLDERS
22#include <boost/property_tree/ptree.hpp>
23#include <boost/property_tree/json_parser.hpp>
45 os <<
"LinkID: " << entryCRU.
mLinkID <<
"|";
46 os <<
"EndPointID: " << entryCRU.
mEndPointID <<
"|";
47 os <<
"CRUID: " << entryCRU.
mCRUID <<
"|";
48 os <<
"FEEID: " << entryCRU.
mFEEID;
51 void parse(
const boost::property_tree::ptree& propertyTree)
53 mLinkID = propertyTree.get<
int>(
"LinkID");
55 mCRUID = propertyTree.get<
int>(
"CRUID");
56 mFEEID = propertyTree.get<
int>(
"FEEID");
92 auto comparer = [](
const EntryPM& entryPM) ->
decltype(
auto) {
return std::tie(entryPM.mEntryCRU.mEndPointID, entryPM.mEntryCRU.mLinkID, entryPM.mLocalChannelID); };
93 return comparer(entryPM1) < comparer(entryPM2);
129 os <<
"ChannelID: " << entryFEE.
mChannelID <<
"|";
131 os <<
"ModuleType: " << entryFEE.
mModuleType <<
"|";
132 os <<
"ModuleName: " << entryFEE.
mModuleName <<
"|";
133 os <<
"HV board: " << entryFEE.
mBoardHV <<
"|";
134 os <<
"HV channel: " << entryFEE.
mChannelHV <<
"|";
136 os <<
"HV cable: " << entryFEE.
mCableHV <<
"|";
141 void parse(
const boost::property_tree::ptree& propertyTree)
144 mChannelID = propertyTree.get<std::string>(
"channel #");
146 mModuleType = propertyTree.get<std::string>(
"ModuleType");
147 mModuleName = propertyTree.get<std::string>(
"Module");
148 mBoardHV = propertyTree.get<std::string>(
"HV board");
149 mChannelHV = propertyTree.get<std::string>(
"HV channel");
151 mCableHV = propertyTree.get<std::string>(
"HV cable");
152 mCableSignal = propertyTree.get<std::string>(
"signal cable");
161template <
typename MapEntryCRU2ModuleType = std::unordered_map<EntryCRU, EModuleType, HasherCRU, ComparerCRU>,
162 typename MapEntryPM2ChannelID = std::unordered_map<EntryPM,
int, HasherPM, ComparerPM>>
169 typedef typename MapEntryPM2ChannelID_t::key_type
EntryPM_t;
170 typedef typename MapEntryCRU2ModuleType_t::key_type
EntryCRU_t;
179 LookupTableBase(
const std::string& urlCCDB,
const std::string& pathToStorageInCCDB,
long timestamp = -1) {
initCCDB(urlCCDB, pathToStorageInCCDB, timestamp); }
183 bool isTCM(
int linkID,
int epID)
const
185 return mEntryCRU_TCM.mLinkID == linkID && mEntryCRU_TCM.mEndPointID == epID;
188 bool isPM(
int linkID,
int epID)
const
212 const auto& it = mapEntries.find(entryCRU);
213 if (it != mapEntries.end()) {
230 std::string filepath{};
231 if (pathToFile ==
"") {
232 std::string inputDir;
233 const char* aliceO2env = std::getenv(
"O2_ROOT");
235 inputDir = aliceO2env;
237 inputDir +=
"/share/Detectors/FT0/files/";
238 filepath = inputDir +
"LookupTable_FT0.json";
239 filepath = gSystem->ExpandPathName(filepath.data());
241 filepath = pathToFile;
246 void initCCDB(
const std::string& urlCCDB,
const std::string& pathToStorageInCCDB,
long timestamp = -1);
249 mVecEntryFEE = *vecEntryFEE;
254 const auto& it = mMapEntryPM2ChannelID.find(entryPM);
255 if (it != mMapEntryPM2ChannelID.end()) {
265 return mMapEntryPM2ChannelID.find(std::move(
EntryPM_t{
EntryCRU_t{linkID, ep, 0, 0}, chID}))->second;
269 const auto& it = mMapEntryPM2ChannelID.find(std::move(
EntryPM_t{
EntryCRU_t{linkID, ep, 0, 0}, chID}));
270 if (it != mMapEntryPM2ChannelID.end()) {
280 boost::property_tree::ptree propertyTree;
281 boost::property_tree::read_json(pathToConfigFile.c_str(), propertyTree);
287 for (
const auto& pairEntry : propertyTree) {
288 const auto& propertyTreeSingle = pairEntry.second;
290 entryFEE.
parse(propertyTreeSingle);
291 vecEntryFEE.push_back(entryFEE);
298 mMapEntryCRU2ModuleType.clear();
299 mMapEntryPM2ChannelID.clear();
301 for (
const auto entryFEE : vecEntryFEE) {
303 std::string strModuleType = entryFEE.mModuleType;
306 mMapEntryCRU2ModuleType.insert({entryCRU, moduleType});
309 const std::string& strChannelID = entryFEE.mChannelID;
310 const std::string& strLocalChannelID = entryFEE.mLocalChannelID;
311 EntryPM_t entryPM{entryCRU, std::stoi(strLocalChannelID)};
312 mMapEntryPM2ChannelID.insert({entryPM, std::stoi(strChannelID)});
315 mEntryCRU_TCM = entryCRU;
321 for (
const auto&
entry : mVecEntryFEE) {
343 return Topo_t{topo.mEntryCRU, 0};
347 return topo.mLocalChannelID;
352 auto findResult = std::find_if(mapChannels.begin(), mapChannels.end(), [&](
const auto& pairEntry) {
353 return pairEntry.second == globalChannelID;
355 return findResult->first;
360 auto findResult = std::find_if(mapModuleType.begin(), mapModuleType.end(), [&](
const auto& pairEntry) {
361 return pairEntry.second == EModuleType::kTCM;
363 return Topo_t{findResult->first, 0};
366 template <
typename RDHtype,
typename RDHhelper =
void>
369 std::map<Topo_t, RDHtype> mapResult;
370 const uint16_t cruID = 0;
374 std::map<int, Topo_t> mapBuf;
375 for (
const auto&
entry : mapEntryPM2ChannelID) {
382 mapBuf.insert({1 +
static_cast<int>((--mapBuf.end())->first),
Topo_t{cru_tcm, 0}});
384 for (
const auto& pairEntry : mapBuf) {
385 auto en = pairEntry.second;
386 auto pairInserted = mapResult.insert({
makeGlobalTopo(en), RDHtype{}});
387 if (pairInserted.second) {
388 auto& rdhObj = pairInserted.first->second;
389 const auto& topoObj = pairInserted.first->first;
390 if constexpr (std::is_same<RDHhelper, void>::value) {
391 rdhObj.linkID = topoObj.mEntryCRU.mLinkID;
392 rdhObj.endPointID = topoObj.mEntryCRU.mEndPointID;
393 rdhObj.feeId = feeID;
394 rdhObj.cruID = cruID;
397 RDHhelper::setLinkID(&rdhObj, topoObj.mEntryCRU.mLinkID);
398 RDHhelper::setEndPointID(&rdhObj, topoObj.mEntryCRU.mEndPointID);
399 RDHhelper::setFEEID(&rdhObj, feeID);
400 RDHhelper::setCRUID(&rdhObj, cruID);
405 for (
const auto&
entry : mapResult) {
406 std::cout <<
"\nTEST: " <<
entry.first << std::endl;
416 typedef std::enable_if_t<std::is_integral<typename MapEntryPM2ChannelID::mapped_type>::value> CheckChannelIDtype;
420template <o2::detectors::DetID::ID DetID,
typename LUT>
426 SingleLUT(
const std::string& pathToFile) :
LUT(pathToFile) {}
429 constexpr static bool isValidDet()
436 typedef typename LookupTable_t::Table_t
Table_t;
440 static_assert(isValidDet(),
"Invalid detector type(o2::detectors::DetID::ID)! Should be one of the FIT detector!");
442 return "FDD/Config/LookupTable";
444 return "FT0/Config/LookupTable";
446 return "FV0/Config/LookupTable";
466 if (table !=
nullptr) {
467 instanceLUT.initFromTable(table);
std::string ccdbPath(const std::string badChannelType)
Definition of the Names Generator class.
static std::string getCCDBServer()
Static class with identifiers, bitmasks and names for ALICE detectors.
static constexpr const char * getName(ID id)
names of defined detectors
void initFromTable(const Table_t *vecEntryFEE)
EModuleType getModuleType(const EntryCRU_t &entryCRU) const
bool isPM(const EntryCRU_t &entryCRU) const
MapEntryPM2ChannelID MapEntryPM2ChannelID_t
const std::map< std::string, EModuleType > mMapModuleTypeStr2Enum
auto makeMapFEEmetadata() -> std::map< Topo_t, RDHtype >
Topo_t getTopoTCM() const
ChannelID_t getChannel(int linkID, int chID, int ep=0)
ChannelID_t getGlobalChannelID(const EntryPM_t &entryPM, bool &isValid) const
const MapEntryCRU2ModuleType_t & getMapEntryCRU2ModuleType() const
bool isTCM(int linkID, int epID) const
MapEntryCRU2ModuleType_t::key_type EntryCRU_t
void initFromFile(const std::string &pathToFile)
MapEntryPM2ChannelID_t::key_type EntryPM_t
void printFullMap() const
MapEntryCRU2ModuleType MapEntryCRU2ModuleType_t
LookupTableBase(const std::string &pathToFile)
std::map< EModuleType, EntryCRU_t > MapModuleType2EntryCRU
const MapEntryPM2ChannelID_t & getMapEntryPM2ChannelID() const
const EntryCRU_t & getEntryCRU_TCM() const
std::vector< EntryFEE > Table_t
LookupTableBase(const std::string &urlCCDB, const std::string &pathToStorageInCCDB, long timestamp=-1)
LookupTableBase()=default
bool isPM(int linkID, int epID) const
Table_t prepareEntriesFEE(const boost::property_tree::ptree &propertyTree)
void prepareEntriesFEE(const std::string &pathToConfigFile)
MapEntryPM2ChannelID_t::mapped_type ChannelID_t
static Topo_t makeGlobalTopo(const Topo_t &topo)
std::map< ChannelID_t, EntryPM_t > MapChannelID2EntryPM_t
Topo_t getTopoPM(int globalChannelID) const
static int getLocalChannelID(const Topo_t &topo)
bool isTCM(const EntryCRU_t &entryCRU) const
LookupTableBase(const Table_t *vecEntryFEE)
const Table_t & getVecMetadataFEE() const
ChannelID_t getChannel(int linkID, int ep, int chID, bool &isValid)
void initCCDB(const std::string &urlCCDB, const std::string &pathToStorageInCCDB, long timestamp=-1)
EModuleType getModuleType(const std::string &moduleType)
static constexpr o2::detectors::DetID sDetID
static SingleLUT & Instance(const Table_t *table=nullptr, long timestamp=-1)
LookupTable_t::Table_t Table_t
static std::string sCurrentCCDBpath
static constexpr const char * getObjectPath()
static constexpr const char sObjectName[]
static void setLUTpath(const std::string &path)
static void setCCDBurl(const std::string &url)
static constexpr const char * sDetectorName
static std::string sCurrentLUTpath
static constexpr const char * sDefaultLUTpath
GLsizei const GLchar *const * path
bool operator<(EntryPM const &entryPM1, EntryPM const &entryPM2)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
bool isValid(std::string alias)
bool operator()(const EntryCRU &entry1, const EntryCRU &entry2) const
bool operator()(const EntryPM &entry1, const EntryPM &entry2) const
friend std::ostream & operator<<(std::ostream &os, const EntryCRU &entryCRU)
void parse(const boost::property_tree::ptree &propertyTree)
void parse(const boost::property_tree::ptree &propertyTree)
friend std::ostream & operator<<(std::ostream &os, const EntryFEE &entryFEE)
std::string mLocalChannelID
std::string mSerialNumberMCP
friend std::ostream & operator<<(std::ostream &os, const EntryPM &entryPM)
std::size_t operator()(const EntryCRU &entryCRU) const
std::size_t operator()(const EntryPM &entryPM) const
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"