/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/OptAlignObjects/interface/Inclinometers.h
36 строк
815 B
Cms Build
Clang-Format
29 май 2019, 08:24
29 май 2019, 08:24
5c96c3b
Код
Авторство
О чём код?
#ifndef INCLINOMETERS_H #define INCLINOMETERS_H #include "CondFormats/Serialization/interface/Serializable.h" #include <vector> #include <string> class Inclinometers { public: struct Item { public: std::string Sensor_type; int Sensor_number; std::string ME_layer; std::string Logical_Alignment_Name; std::string CERN_Designator; std::string CERN_Barcode; std::string Inclination_Direction; float Abs_Slope; float Abs_Slope_Error; float Norm_Slope; float Norm_Slope_Error; float Abs_Intercept; float Abs_Intercept_Error; float Norm_Intercept; float Norm_Intercept_Error; float Shifts_due_to_shims_etc; COND_SERIALIZABLE; }; Inclinometers(); virtual ~Inclinometers(); std::vector<Item> m_inclinometers; COND_SERIALIZABLE; }; #endif