/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Core/interface/ExtrudedPolygon.h
27 строк
816 B
Shahzad Malik Muzaffar
[DD] Move public headers in to interface directory
02 авг 2021, 19:31
02 авг 2021, 19:31
1de7feb
Код
Авторство
О чём код?
#ifndef DDI_ExtrudedPolygon_h #define DDI_ExtrudedPolygon_h #include <iosfwd> #include <vector> #include "Solid.h" namespace DDI { class ExtrudedPolygon : public Solid { public: /* G4ExtrudedSolid(const G4String& pName, */ /* std::vector<G4TwoVector> polygon, */ /* std::vector<ZSection> zsections) */ ExtrudedPolygon(const std::vector<double>& x, const std::vector<double>& y, const std::vector<double>& z, const std::vector<double>& zx, const std::vector<double>& zy, const std::vector<double>& zscale); double volume() const override; void stream(std::ostream&) const override; }; } // namespace DDI #endif // DDI_ExtrudedPolygon_h