/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/CSCObjects/interface/CSCGains.h
31 строка
526 B
Cms Build
Clang-Format
22 май 2019, 04:56
22 май 2019, 04:56
28f175a
Код
Авторство
О чём код?
#ifndef CSCGains_h #define CSCGains_h #include "CondFormats/Serialization/interface/Serializable.h" #include "DataFormats/MuonDetId/interface/CSCDetId.h" #include <vector> #include <map> class CSCGains { public: CSCGains(); ~CSCGains(); struct Item { float gain_slope; float gain_intercept; float gain_chi2; COND_SERIALIZABLE; }; const Item& item(const CSCDetId& cscId, int strip) const; typedef std::map<int, std::vector<Item> > GainsMap; GainsMap gains; COND_SERIALIZABLE; }; #endif