/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/EcalObjects/interface/EcalSimComponentShape.h
18 строк
500 B
John Hakala
squash 2: initial implementation of component method for ecal barrel digi and waveform simulation
17 мар 2023, 00:40
17 мар 2023, 00:40
6d4780d
Код
Авторство
О чём код?
#ifndef CondFormats_EcalObjects_EcalSimComponentShape_hh #define CondFormats_EcalObjects_EcalSimComponentShape_hh #include "CondFormats/Serialization/interface/Serializable.h" #include <vector> class EcalSimComponentShape { public: EcalSimComponentShape() = default; std::vector<std::vector<float> > barrel_shapes; // there is no need to getters/setters, just access data directly double barrel_thresh; float time_interval; // time interval of the shape COND_SERIALIZABLE; }; #endif