/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/FWRecoGeom.h
27 строк
557 B
Cms Build
Clang-Format
20 май 2019, 13:07
20 май 2019, 13:07
6684288
Код
Авторство
О чём код?
#ifndef CORE_FWRECO_GEOM_H #define CORE_FWRECO_GEOM_H #include <vector> class FWRecoGeom { public: FWRecoGeom(void) {} virtual ~FWRecoGeom(void) {} struct Info { unsigned int id; float points[24]; // x1,y1,z1...x8,y8,z8 float topology[9]; float shape[5]; float translation[3]; float matrix[9]; bool operator<(const Info& o) const { return (this->id < o.id); } }; typedef std::vector<FWRecoGeom::Info> InfoMap; typedef std::vector<FWRecoGeom::Info>::const_iterator InfoMapItr; }; #endif // CORE_FWRECO_GEOM_H