/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Core/interface/Polyhedra.h
26 строк
652 B
Shahzad Malik Muzaffar
[DD] Move public headers in to interface directory
02 авг 2021, 19:31
02 авг 2021, 19:31
1de7feb
Код
Авторство
О чём код?
#ifndef DDI_Polyhedra_h #define DDI_Polyhedra_h #include <iosfwd> #include <vector> #include "Solid.h" namespace DDI { class Polyhedra : public Solid { public: Polyhedra(int sides, double startPhi, double deltaPhi, const std::vector<double> &z, const std::vector<double> &rmin, const std::vector<double> &rmax); Polyhedra(int sides, double startPhi, double deltaPhi, const std::vector<double> &z, const std::vector<double> &r); double volume() const override; void stream(std::ostream &) const override; }; } // namespace DDI #endif // DDI_Polyhedra_h