Project
Loading...
Searching...
No Matches
LookUpTable.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12#ifndef ALICEO2_FIT_LOOKUPTABLE_H_
13#define ALICEO2_FIT_LOOKUPTABLE_H_
15// Look Up Table FIT
17
20#include "Framework/Logger.h"
21#define BOOST_BIND_GLOBAL_PLACEHOLDERS
22#include <boost/property_tree/ptree.hpp>
23#include <boost/property_tree/json_parser.hpp>
24#include <Rtypes.h>
25#include <iostream>
26#include <tuple>
27#include <TSystem.h>
28#include <map>
29#include <string>
30#include <vector>
31#include <istream>
32#include <ostream>
33#include <algorithm>
34namespace o2
35{
36namespace fit
37{
38struct EntryCRU { // This is specific struct for CRU entry
41 int mCRUID;
42 int mFEEID;
43 friend std::ostream& operator<<(std::ostream& os, const EntryCRU& entryCRU)
44 {
45 os << "LinkID: " << entryCRU.mLinkID << "|";
46 os << "EndPointID: " << entryCRU.mEndPointID << "|";
47 os << "CRUID: " << entryCRU.mCRUID << "|";
48 os << "FEEID: " << entryCRU.mFEEID;
49 return os;
50 }
51 void parse(const boost::property_tree::ptree& propertyTree)
52 {
53 mLinkID = propertyTree.get<int>("LinkID");
54 mEndPointID = propertyTree.get<int>("EndPointID");
55 mCRUID = propertyTree.get<int>("CRUID");
56 mFEEID = propertyTree.get<int>("FEEID");
57 }
59};
60
61struct HasherCRU {
62 // Hash-function without any collisions due to technical bit size of fields:
63 // RDH::EndPointID : 4 bits
64 // RDH::LinkID : 8 bits
65 std::size_t operator()(const EntryCRU& entryCRU) const
66 {
67 return (entryCRU.mLinkID << 4) | entryCRU.mEndPointID;
68 }
69};
70
72 bool operator()(const EntryCRU& entry1, const EntryCRU& entry2) const
73 {
74 return ((entry1.mLinkID << 4) | entry1.mEndPointID) == ((entry2.mLinkID << 4) | entry2.mEndPointID);
75 }
76};
77
78struct EntryPM {
81 friend std::ostream& operator<<(std::ostream& os, const EntryPM& entryPM)
82 {
83 os << entryPM.mEntryCRU << "|";
84 os << "LocalChID: " << entryPM.mLocalChannelID;
85 return os;
86 }
88};
89
90inline bool operator<(EntryPM const& entryPM1, EntryPM const& entryPM2)
91{
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);
94}
95
96struct HasherPM {
97 // Hash-function without any collisions due to technical bit size of fields:
98 // RDH::EndPointID : 4 bits
99 // EventData::ChannelID : 4 bits
100 // RDH::LinkID : 8 bits
101 std::size_t operator()(const EntryPM& entryPM) const
102 {
103 return (entryPM.mEntryCRU.mLinkID << 8) | (entryPM.mLocalChannelID << 4) | (entryPM.mEntryCRU.mEndPointID);
104 }
105};
106
108 // Always true due to perfect hasher
109 bool operator()(const EntryPM& entry1, const EntryPM& entry2) const
110 {
111 return ((entry1.mEntryCRU.mLinkID << 8) | (entry1.mLocalChannelID << 4) | (entry1.mEntryCRU.mEndPointID)) == ((entry2.mEntryCRU.mLinkID << 8) | (entry2.mLocalChannelID << 4) | (entry2.mEntryCRU.mEndPointID));
112 }
113};
114
115struct EntryFEE {
117 std::string mChannelID; // ChannelID, string type because some entries containes N/A
118 std::string mLocalChannelID; // Local channelID, string type because some entries containes N/A
119 std::string mModuleType; // PM, PM-LCS, TCM
120 std::string mModuleName;
121 std::string mBoardHV;
122 std::string mChannelHV;
123 std::string mSerialNumberMCP;
124 std::string mCableHV;
125 std::string mCableSignal;
126 friend std::ostream& operator<<(std::ostream& os, const EntryFEE& entryFEE)
127 {
128 os << entryFEE.mEntryCRU << "|";
129 os << "ChannelID: " << entryFEE.mChannelID << "|";
130 os << "LocalChannelID: " << entryFEE.mLocalChannelID << "|";
131 os << "ModuleType: " << entryFEE.mModuleType << "|";
132 os << "ModuleName: " << entryFEE.mModuleName << "|";
133 os << "HV board: " << entryFEE.mBoardHV << "|";
134 os << "HV channel: " << entryFEE.mChannelHV << "|";
135 os << "MCP S/N: " << entryFEE.mSerialNumberMCP << "|";
136 os << "HV cable: " << entryFEE.mCableHV << "|";
137 os << "signal cable: " << entryFEE.mCableSignal << "|";
138 return os;
139 }
140
141 void parse(const boost::property_tree::ptree& propertyTree)
142 {
143 mEntryCRU.parse(propertyTree);
144 mChannelID = propertyTree.get<std::string>("channel #");
145 mLocalChannelID = propertyTree.get<std::string>("LocalChannelID");
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");
150 mSerialNumberMCP = propertyTree.get<std::string>("MCP S/N");
151 mCableHV = propertyTree.get<std::string>("HV cable");
152 mCableSignal = propertyTree.get<std::string>("signal cable");
153 }
155};
156enum class EModuleType : int { kUnknown,
157 kPM,
158 kPM_LCS,
159 kTCM };
160
161template <typename MapEntryCRU2ModuleType = std::unordered_map<EntryCRU, EModuleType, HasherCRU, ComparerCRU>,
162 typename MapEntryPM2ChannelID = std::unordered_map<EntryPM, int, HasherPM, ComparerPM>>
164{
165 public:
166 typedef std::vector<EntryFEE> Table_t;
167 typedef MapEntryPM2ChannelID MapEntryPM2ChannelID_t;
168 typedef MapEntryCRU2ModuleType MapEntryCRU2ModuleType_t;
169 typedef typename MapEntryPM2ChannelID_t::key_type EntryPM_t;
170 typedef typename MapEntryCRU2ModuleType_t::key_type EntryCRU_t;
171 typedef typename MapEntryPM2ChannelID_t::mapped_type ChannelID_t;
172 typedef std::map<ChannelID_t, EntryPM_t> MapChannelID2EntryPM_t; // for digit2raw
173 typedef std::map<EModuleType, EntryCRU_t> MapModuleType2EntryCRU; // for digit2raw
174 typedef EntryPM_t Topo_t; // temporary for common interface
175
176 LookupTableBase() = default;
177 LookupTableBase(const Table_t* vecEntryFEE) { initFromTable(vecEntryFEE); }
178 LookupTableBase(const std::string& pathToFile) { initFromFile(pathToFile); }
179 LookupTableBase(const std::string& urlCCDB, const std::string& pathToStorageInCCDB, long timestamp = -1) { initCCDB(urlCCDB, pathToStorageInCCDB, timestamp); }
180 // Map of str module names -> enum types
181 const std::map<std::string, EModuleType> mMapModuleTypeStr2Enum = {{"PM", EModuleType::kPM}, {"PM-LCS", EModuleType::kPM_LCS}, {"TCM", EModuleType::kTCM}};
182 // Warning! To exclude double mapping do not use isTCM and isPM in the same time
183 bool isTCM(int linkID, int epID) const
184 {
185 return mEntryCRU_TCM.mLinkID == linkID && mEntryCRU_TCM.mEndPointID == epID;
186 }
187
188 bool isPM(int linkID, int epID) const
189 {
190 return isPM(EntryCRU_t{linkID, epID});
191 }
192
193 bool isTCM(const EntryCRU_t& entryCRU) const
194 {
195 if (getModuleType(entryCRU) == EModuleType::kTCM) {
196 return true;
197 } else {
198 return false;
199 }
200 }
201 bool isPM(const EntryCRU_t& entryCRU) const
202 {
203 if (getModuleType(entryCRU) == EModuleType::kPM || getModuleType(entryCRU) == EModuleType::kPM_LCS) {
204 return true;
205 } else {
206 return false;
207 }
208 }
209 EModuleType getModuleType(const EntryCRU_t& entryCRU) const
210 {
211 const auto& mapEntries = getMapEntryCRU2ModuleType();
212 const auto& it = mapEntries.find(entryCRU);
213 if (it != mapEntries.end()) {
214 return it->second;
215 } else {
217 }
218 }
219 EModuleType getModuleType(const std::string& moduleType)
220 {
221 const auto& it = mMapModuleTypeStr2Enum.find(moduleType);
222 if (it != mMapModuleTypeStr2Enum.end()) {
223 return it->second;
224 } else {
226 }
227 }
228 void initFromFile(const std::string& pathToFile)
229 {
230 std::string filepath{};
231 if (pathToFile == "") {
232 std::string inputDir;
233 const char* aliceO2env = std::getenv("O2_ROOT");
234 if (aliceO2env) {
235 inputDir = aliceO2env;
236 }
237 inputDir += "/share/Detectors/FT0/files/";
238 filepath = inputDir + "LookupTable_FT0.json";
239 filepath = gSystem->ExpandPathName(filepath.data()); // Expand $(ALICE_ROOT) into real system path
240 } else {
241 filepath = pathToFile;
242 }
243 prepareEntriesFEE(filepath);
244 prepareLUT();
245 }
246 void initCCDB(const std::string& urlCCDB, const std::string& pathToStorageInCCDB, long timestamp = -1);
247 void initFromTable(const Table_t* vecEntryFEE)
248 {
249 mVecEntryFEE = *vecEntryFEE;
250 prepareLUT();
251 }
252 ChannelID_t getGlobalChannelID(const EntryPM_t& entryPM, bool& isValid) const
253 {
254 const auto& it = mMapEntryPM2ChannelID.find(entryPM);
255 if (it != mMapEntryPM2ChannelID.end()) {
256 isValid = true;
257 return it->second;
258 } else {
259 isValid = false;
260 return -1;
261 }
262 }
263 ChannelID_t getChannel(int linkID, int chID, int ep = 0)
264 {
265 return mMapEntryPM2ChannelID.find(std::move(EntryPM_t{EntryCRU_t{linkID, ep, 0, 0}, chID}))->second;
266 }
267 ChannelID_t getChannel(int linkID, int ep, int chID, bool& isValid)
268 {
269 const auto& it = mMapEntryPM2ChannelID.find(std::move(EntryPM_t{EntryCRU_t{linkID, ep, 0, 0}, chID}));
270 if (it != mMapEntryPM2ChannelID.end()) {
271 isValid = true;
272 return it->second;
273 } else {
274 isValid = false;
275 return -1;
276 }
277 }
278 void prepareEntriesFEE(const std::string& pathToConfigFile)
279 {
280 boost::property_tree::ptree propertyTree;
281 boost::property_tree::read_json(pathToConfigFile.c_str(), propertyTree);
282 mVecEntryFEE = prepareEntriesFEE(propertyTree);
283 }
284 Table_t prepareEntriesFEE(const boost::property_tree::ptree& propertyTree)
285 {
286 Table_t vecEntryFEE;
287 for (const auto& pairEntry : propertyTree) {
288 const auto& propertyTreeSingle = pairEntry.second;
289 EntryFEE entryFEE{};
290 entryFEE.parse(propertyTreeSingle);
291 vecEntryFEE.push_back(entryFEE);
292 }
293 return vecEntryFEE;
294 }
295
297 {
298 mMapEntryCRU2ModuleType.clear();
299 mMapEntryPM2ChannelID.clear();
300 const auto& vecEntryFEE = getVecMetadataFEE();
301 for (const auto entryFEE : vecEntryFEE) {
302 EntryCRU_t entryCRU = entryFEE.mEntryCRU;
303 std::string strModuleType = entryFEE.mModuleType;
304 EModuleType moduleType = getModuleType(strModuleType);
305 if (moduleType != EModuleType::kUnknown) {
306 mMapEntryCRU2ModuleType.insert({entryCRU, moduleType});
307 }
308 if (moduleType == EModuleType::kPM || moduleType == EModuleType::kPM_LCS) {
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)});
313 }
314 if (moduleType == EModuleType::kTCM) {
315 mEntryCRU_TCM = entryCRU;
316 }
317 }
318 }
319 void printFullMap() const
320 {
321 for (const auto& entry : mVecEntryFEE) {
322 LOG(info) << entry;
323 }
324 /*
325 std::cout<<std::endl<<"------------------------------------------------------------------------------"<<std::endl;
326 for(const auto &entry:mMapEntryPM2ChannelID) {
327 std::cout<<entry.first<<"| GlChID: "<<entry.second<<std::endl;
328 }
329 std::cout<<std::endl<<"------------------------------------------------------------------------------"<<std::endl;
330 for(const auto &entry:mMapEntryCRU2ModuleType) {
331 std::cout<<entry.first<<"| ModuleType: "<<static_cast<int>(entry.second)<<std::endl;
332 }
333 */
334 }
335 const Table_t& getVecMetadataFEE() const { return mVecEntryFEE; }
336 const MapEntryCRU2ModuleType_t& getMapEntryCRU2ModuleType() const { return mMapEntryCRU2ModuleType; }
337 const MapEntryPM2ChannelID_t& getMapEntryPM2ChannelID() const { return mMapEntryPM2ChannelID; }
338 const EntryCRU_t& getEntryCRU_TCM() const { return mEntryCRU_TCM; }
339 // Temporary
340 // Making topo for FEE recognizing(Local channelID is supressed)
341 static Topo_t makeGlobalTopo(const Topo_t& topo)
342 {
343 return Topo_t{topo.mEntryCRU, 0};
344 }
345 static int getLocalChannelID(const Topo_t& topo)
346 {
347 return topo.mLocalChannelID;
348 }
349 Topo_t getTopoPM(int globalChannelID) const
350 {
351 const auto& mapChannels = getMapEntryPM2ChannelID();
352 auto findResult = std::find_if(mapChannels.begin(), mapChannels.end(), [&](const auto& pairEntry) {
353 return pairEntry.second == globalChannelID;
354 });
355 return findResult->first;
356 }
358 {
359 const auto& mapModuleType = getMapEntryCRU2ModuleType();
360 auto findResult = std::find_if(mapModuleType.begin(), mapModuleType.end(), [&](const auto& pairEntry) {
361 return pairEntry.second == EModuleType::kTCM;
362 });
363 return Topo_t{findResult->first, 0};
364 }
365 // Prepare full map for FEE metadata(for digit2raw convertion)
366 template <typename RDHtype, typename RDHhelper = void>
367 auto makeMapFEEmetadata() -> std::map<Topo_t, RDHtype>
368 {
369 std::map<Topo_t, RDHtype> mapResult;
370 const uint16_t cruID = 0; // constant
371 uint64_t feeID = 0; // increments
372 const auto& mapEntryPM2ChannelID = getMapEntryPM2ChannelID();
373 // Temporary for sorting FEEIDs without using them from LUT(for digit2raw convertion), and by using GlobalChannelID
374 std::map<int, Topo_t> mapBuf;
375 for (const auto& entry : mapEntryPM2ChannelID) {
376 mapBuf.insert({entry.second, entry.first});
377 }
378 const auto& cru_tcm = getEntryCRU_TCM();
379
380 // FIXME: quick fix for to get the TCM into the right channel
381 // mapBuf.insert({static_cast<int>(mapBuf.size()), Topo_t{cru_tcm, 0}});
382 mapBuf.insert({1 + static_cast<int>((--mapBuf.end())->first), Topo_t{cru_tcm, 0}});
383 //
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;
395 } else // Using RDHUtils
396 {
397 RDHhelper::setLinkID(&rdhObj, topoObj.mEntryCRU.mLinkID);
398 RDHhelper::setEndPointID(&rdhObj, topoObj.mEntryCRU.mEndPointID);
399 RDHhelper::setFEEID(&rdhObj, feeID);
400 RDHhelper::setCRUID(&rdhObj, cruID);
401 }
402 feeID++;
403 }
404 }
405 for (const auto& entry : mapResult) {
406 std::cout << "\nTEST: " << entry.first << std::endl;
407 }
408 return mapResult;
409 }
410
411 private:
412 EntryCRU_t mEntryCRU_TCM;
413 Table_t mVecEntryFEE;
414 MapEntryCRU2ModuleType_t mMapEntryCRU2ModuleType;
415 MapEntryPM2ChannelID_t mMapEntryPM2ChannelID;
416 typedef std::enable_if_t<std::is_integral<typename MapEntryPM2ChannelID::mapped_type>::value> CheckChannelIDtype; // should be integral
417};
418
419// Singleton for LookUpTable, coomon for all three FIT detectors
420template <o2::detectors::DetID::ID DetID, typename LUT>
421class SingleLUT : public LUT
422{
423 private:
424 SingleLUT() = default;
425 SingleLUT(const std::string& ccdbPath, const std::string& ccdbPathToLUT) : LUT(ccdbPath, ccdbPathToLUT) {}
426 SingleLUT(const std::string& pathToFile) : LUT(pathToFile) {}
427 SingleLUT(const SingleLUT&) = delete;
428 SingleLUT& operator=(SingleLUT&) = delete;
429 constexpr static bool isValidDet()
430 {
432 }
433
434 public:
436 typedef typename LookupTable_t::Table_t Table_t;
437
438 constexpr static const char* getObjectPath()
439 {
440 static_assert(isValidDet(), "Invalid detector type(o2::detectors::DetID::ID)! Should be one of the FIT detector!");
441 if constexpr (DetID == o2::detectors::DetID::FDD) {
442 return "FDD/Config/LookupTable";
443 } else if constexpr (DetID == o2::detectors::DetID::FT0) {
444 return "FT0/Config/LookupTable";
445 } else if constexpr (DetID == o2::detectors::DetID::FV0) {
446 return "FV0/Config/LookupTable";
447 }
448 return "";
449 }
451 static constexpr const char* sDetectorName = o2::detectors::DetID::getName(DetID);
452 static constexpr const char* sDefaultLUTpath = getObjectPath();
453 static constexpr const char sObjectName[] = "LookupTable";
454 inline static std::string sCurrentCCDBpath = "";
455 inline static std::string sCurrentLUTpath = sDefaultLUTpath;
456 // Before instance() call, setup url and path
457 static void setCCDBurl(const std::string& url) { sCurrentCCDBpath = url; }
458 static void setLUTpath(const std::string& path) { sCurrentLUTpath = path; }
459 bool mFirstUpdate{true}; // option in case if LUT should be updated during workflow initialization
460 static SingleLUT& Instance(const Table_t* table = nullptr, long timestamp = -1)
461 {
462 if (sCurrentCCDBpath == "") {
464 }
465 static SingleLUT instanceLUT;
466 if (table != nullptr) {
467 instanceLUT.initFromTable(table);
468 instanceLUT.mFirstUpdate = false;
469 } else if (instanceLUT.mFirstUpdate) {
470 instanceLUT.initCCDB(sCurrentCCDBpath, sCurrentLUTpath, timestamp);
471 instanceLUT.mFirstUpdate = false;
472 }
473 return instanceLUT;
474 }
475};
476
477} // namespace fit
478} // namespace o2
479
480#endif
std::string ccdbPath(const std::string badChannelType)
Definition of the Names Generator class.
static std::string getCCDBServer()
Definition NameConf.cxx:110
Static class with identifiers, bitmasks and names for ALICE detectors.
Definition DetID.h:58
static constexpr const char * getName(ID id)
names of defined detectors
Definition DetID.h:145
static constexpr ID FV0
Definition DetID.h:76
static constexpr ID FT0
Definition DetID.h:75
static constexpr ID FDD
Definition DetID.h:77
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
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)
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
GLuint entry
Definition glcorearb.h:5735
GLsizei const GLchar *const * path
Definition glcorearb.h:3591
bool operator<(EntryPM const &entryPM1, EntryPM const &entryPM2)
Definition LookUpTable.h:90
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
Definition LookUpTable.h:72
bool operator()(const EntryPM &entry1, const EntryPM &entry2) const
ClassDefNV(EntryCRU, 1)
friend std::ostream & operator<<(std::ostream &os, const EntryCRU &entryCRU)
Definition LookUpTable.h:43
void parse(const boost::property_tree::ptree &propertyTree)
Definition LookUpTable.h:51
std::string mCableHV
std::string mBoardHV
std::string mCableSignal
void parse(const boost::property_tree::ptree &propertyTree)
friend std::ostream & operator<<(std::ostream &os, const EntryFEE &entryFEE)
std::string mChannelHV
ClassDefNV(EntryFEE, 1)
std::string mModuleName
std::string mModuleType
std::string mLocalChannelID
std::string mChannelID
std::string mSerialNumberMCP
EntryCRU mEntryCRU
Definition LookUpTable.h:79
friend std::ostream & operator<<(std::ostream &os, const EntryPM &entryPM)
Definition LookUpTable.h:81
ClassDefNV(EntryPM, 1)
std::size_t operator()(const EntryCRU &entryCRU) const
Definition LookUpTable.h:65
std::size_t operator()(const EntryPM &entryPM) const
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"