/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/HcalCommon/interface/Mapper.h
41 строка
1 KB
Long
Revert "Revert "Adding tp data and emulation plots for all time slices and split based on slot""
04 июл 2021, 17:37
04 июл 2021, 17:37
ccbdccf
Код
Авторство
О чём код?
#ifndef Mapper_h #define Mapper_h /* * file: Mapper.h * Author: Viktor Khristenko * * Description: */ #include "DQM/HcalCommon/interface/Constants.h" #include "DQM/HcalCommon/interface/HcalCommonHeaders.h" #include "DQM/HcalCommon/interface/Logger.h" #include <sstream> #include <string> #include <vector> namespace hcaldqm { namespace mapper { class Mapper { public: Mapper() {} virtual ~Mapper() {} virtual uint32_t getHash(HcalDetId const &) const { return 0; } virtual uint32_t getHash(HcalElectronicsId const &) const { return 0; } virtual uint32_t getHash(HcalTrigTowerDetId const &) const { return 0; } virtual uint32_t getHash(HcalTrigTowerDetId const &, HcalElectronicsId const &) const { return 0; } virtual std::string getName(HcalDetId const &) const { return ""; } virtual std::string getName(HcalElectronicsId const &) const { return ""; } virtual std::string getName(HcalTrigTowerDetId const &) const { return ""; } virtual std::string getName(HcalTrigTowerDetId const &, HcalElectronicsId const &) const { return ""; } protected: }; } // namespace mapper } // namespace hcaldqm #endif