/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/GeometryObjects/interface/PDetGeomDesc.h
31 строка
713 B
Gabrielle Hugo
Renamed writer to DB + minor commnents.
05 сен 2020, 18:28
05 сен 2020, 18:28
4f9b9d3
Код
Авторство
О чём код?
#ifndef CondFormats_PDetGeomDesc_h #define CondFormats_PDetGeomDesc_h #include "CondFormats/Serialization/interface/Serializable.h" #include <vector> #include <string> class PDetGeomDesc { public: struct Item { // Translation matrix elements double dx_, dy_, dz_; // in mm // Rotation matrix elements double axx_, axy_, axz_, ayx_, ayy_, ayz_, azx_, azy_, azz_; std::string name_; std::vector<double> params_; // default unit: mm from oldDD, cm from DD4hep uint32_t geographicalID_; // to be converted to DetId int copy_; float z_; // in mm std::string sensorType_; COND_SERIALIZABLE; }; std::vector<Item> container_; COND_SERIALIZABLE; }; #endif