/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
OnlineDB/EcalCondDB/interface/FEConfigParamDat.h
55 строк
2 KB
Cms Build
Clang-Format
20 май 2019, 13:02
20 май 2019, 13:02
4a10e79
Код
Авторство
О чём код?
#ifndef FECONFPARAMDAT_H #define FECONFPARAMDAT_H #include <vector> #include <stdexcept> #include "OnlineDB/EcalCondDB/interface/IDataItem.h" #include "OnlineDB/EcalCondDB/interface/FEConfigLinInfo.h" #include "OnlineDB/EcalCondDB/interface/EcalLogicID.h" class FEConfigParamDat : public IDataItem { public: friend class EcalCondDBInterface; // XXX temp should not need FEConfigParamDat(); ~FEConfigParamDat() override; // User data methods inline std::string getTable() override { return "FE_CONFIG_PARAM_DAT"; } inline void setETSat(float x) { m_etsat = x; } inline void setTTThreshlow(float x) { m_tthreshlow = x; } inline void setTTThreshhigh(float x) { m_tthreshhigh = x; } inline void setFGlowthresh(float x) { m_fglowthresh = x; } inline void setFGhighthresh(float x) { m_fghighthresh = x; } inline void setFGlowratio(float x) { m_lowratio = x; } inline void setFGhighratio(float x) { m_highratio = x; } inline float getETSat() const { return m_etsat; } inline float getTTThreshlow() const { return m_tthreshlow; } inline float getTTThreshhigh() const { return m_tthreshhigh; } inline float getFGlowthresh() const { return m_fglowthresh; } inline float getFGhighthresh() const { return m_fghighthresh; } inline float getFGlowratio() const { return m_lowratio; } inline float getFGhighratio() const { return m_highratio; } private: void prepareWrite() noexcept(false) override; void writeDB(const EcalLogicID* ecid, const FEConfigParamDat* item, FEConfigLinInfo* iconf) noexcept(false); void writeArrayDB(const std::map<EcalLogicID, FEConfigParamDat>* data, FEConfigLinInfo* iconf) noexcept(false); void fetchData(std::map<EcalLogicID, FEConfigParamDat>* fillMap, FEConfigLinInfo* iconf) noexcept(false); // User data float m_etsat; float m_tthreshlow; float m_tthreshhigh; float m_fglowthresh; float m_fghighthresh; float m_lowratio; float m_highratio; }; #endif