/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimCalorimetry/CastorSim/interface/CastorShape.h
32 строки
518 B
Sunanda
Reaarange the files to remove .h files from SimCalorimetry/CastorSim/src
18 авг 2021, 22:24
18 авг 2021, 22:24
5dd73cf
Код
Авторство
О чём код?
#ifndef CastorSim_CastorShape_h #define CastorSim_CastorShape_h #include <vector> #include "SimCalorimetry/CaloSimAlgos/interface/CaloVShape.h" /** \class CastorShape \brief shaper for Castor */ class CastorShape : public CaloVShape { public: CastorShape(); CastorShape(const CastorShape &d); ~CastorShape() override {} double operator()(double time) const override; double timeToRise() const override; private: void computeShapeCastor(); int nbin_; std::vector<float> nt_; }; #endif