/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CalibFormats/SiPixelObjects/interface/PixelTKFECConfig.h
65 строк
2 KB
Cms Build
Clang-Format
20 май 2019, 13:01
20 май 2019, 13:01
125ebea
Код
Авторство
О чём код?
#ifndef PixelTKFECConfig_h #define PixelTKFECConfig_h /** * \file CalibFormats/SiPixelObjects/interface/PixelTKFECConfig.h * \brief This class specifies which TKFEC boards are used and how they are addressed * * A longer explanation will be placed here later * */ #include <iostream> #include <vector> #include <string> #include "CalibFormats/SiPixelObjects/interface/PixelConfigBase.h" #include "CalibFormats/SiPixelObjects/interface/PixelTKFECParameters.h" namespace pos { /*! \ingroup ConfigurationObjects "Configuration Objects" * * @{ * * \class PixelTKFECConfig PixelTKFECConfig.h * \brief This class specifies which TKFEC boards are used and how they are addressed * * A longer explanation will be placed here later * */ class PixelTKFECConfig : public PixelConfigBase { public: PixelTKFECConfig( std::string filename); // <---- Modified for the conversion from parallel vectors to object that contain the configuration PixelTKFECConfig(std::vector<std::vector<std::string> > &tableMat); ~PixelTKFECConfig() override; unsigned int getNTKFECBoards() const; std::string getTKFECID(unsigned int i) const; unsigned int getCrate(unsigned int i) const; std::string getType(unsigned int i) const; unsigned int getAddress(unsigned int i) const; unsigned int crateFromTKFECID(std::string TKFECID) const; std::string typeFromTKFECID(std::string TKFECID) const; unsigned int addressFromTKFECID(std::string TKFECID) const; void writeASCII(std::string dir) const override; void writeXML(pos::PixelConfigKey key, int version, std::string path) const override { ; } void writeXMLHeader(pos::PixelConfigKey key, int version, std::string path, std::ofstream *out, std::ofstream *out1 = nullptr, std::ofstream *out2 = nullptr) const override; void writeXML(std::ofstream *out, std::ofstream *out1 = nullptr, std::ofstream *out2 = nullptr) const override; void writeXMLTrailer(std::ofstream *out, std::ofstream *out1 = nullptr, std::ofstream *out2 = nullptr) const override; private: std::vector<PixelTKFECParameters> TKFECconfig_; }; } // namespace pos /* @} */ #endif