/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/ESObjects/interface/ESTBWeights.h
28 строк
638 B
David
move away from boost::uint and boost::int
24 сен 2019, 12:09
24 сен 2019, 12:09
f67c449
Код
Авторство
О чём код?
#ifndef CondFormats_ESObjects_ESTBWeights_H #define CondFormats_ESObjects_ESTBWeights_H #include "CondFormats/Serialization/interface/Serializable.h" #include <map> #include "CondFormats/ESObjects/interface/ESStripGroupId.h" #include "CondFormats/ESObjects/interface/ESWeightSet.h" class ESTBWeights { public: typedef std::map<ESStripGroupId, ESWeightSet> ESTBWeightMap; ESTBWeights(); ~ESTBWeights(); // modifiers void setValue(const ESStripGroupId& groupId, const ESWeightSet& weight); // accessors const ESTBWeightMap& getMap() const { return map_; } private: ESTBWeightMap map_; COND_SERIALIZABLE; }; #endif