/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/SurveyAnalysis/interface/DTSurvey.h
55 строк
1 KB
Cms Build
Clang-Format
09 май 2019, 07:17
09 май 2019, 07:17
6fda101
Код
Авторство
О чём код?
/** \class DTSurvey * * Implements a set of measurements given by survey, tipically a wheel. * Contains DTSurveyChambers and the displacements and rotations for each are * calculated. * * $Date: 2007/12/06 01:53:28 $ * $Revision: 1.3 $ * \author Pablo Martinez Ruiz del Arbol */ #ifndef Alignment_SurveyAnalysis_DTSurvey_H #define Alignment_SurveyAnalysis_DTSurvey_H #include "TMatrixD.h" class DTGeometry; class DTSurveyChamber; namespace edm { template <class> class ESHandle; } class DTSurvey { public: DTSurvey(const std::string &, const std::string &, int); ~DTSurvey(); void ReadChambers(edm::ESHandle<DTGeometry>); void CalculateChambers(); const DTSurveyChamber *getChamber(int, int) const; int getId() const { return id; } //void ToDB(MuonAlignment *); private: void FillWheelInfo(); std::string nameOfWheelInfoFile, nameOfChamberInfoFile; int id; //This is the displacement (vector) and rotation (matrix) for the wheel float OffsetZ; TMatrixD delta; TMatrixD Rot; DTSurveyChamber ***chambers; }; std::ostream &operator<<(std::ostream &, const DTSurvey &); #endif