/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/SurveyAnalysis/plugins/SurveyInputCSCfromPins.h
61 строка
2 KB
mmusich
migrate Alignment/SurveyAnalysis to esConsumes
25 июн 2021, 15:38
25 июн 2021, 15:38
f206584
Код
Авторство
О чём код?
#ifndef Alignment_SurveyAnalysis_SurveyInputCSCfromPins_h #define Alignment_SurveyAnalysis_SurveyInputCSCfromPins_h /** \class SurveyInputCSCfromPins * * Class to read ideal tracker from DB. * * $Date: Fri Jun 29 09:20:52 CEST 2007 * $Revision: 1.2 $ * \author Dmitry Yakorev */ #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "Alignment/SurveyAnalysis/interface/SurveyInputBase.h" #include "CondFormats/Alignment/interface/Definitions.h" #include "Geometry/DTGeometry/interface/DTGeometry.h" #include "Geometry/Records/interface/MuonGeometryRecord.h" class SurveyInputCSCfromPins : public SurveyInputBase { public: SurveyInputCSCfromPins(const edm::ParameterSet &); /// Read ideal tracker geometry from DB void analyze(const edm::Event &, const edm::EventSetup &) override; private: void orient(align::LocalVector LC1, align::LocalVector LC2, double a, double b, double &T, double &dx, double &dy, double &dz, double &PhX, double &PhZ); void errors(double a, double b, bool missing1, bool missing2, double &dx_dx, double &dy_dy, double &dz_dz, double &phix_phix, double &phiz_phiz, double &dy_phix); void fillAllRecords(Alignable *ali); const edm::ESGetToken<DTGeometry, MuonGeometryRecord> DTGeoToken_; const edm::ESGetToken<CSCGeometry, MuonGeometryRecord> CSCGeoToken_; const edm::ESGetToken<GEMGeometry, MuonGeometryRecord> GEMGeoToken_; std::string m_pinPositions; std::string m_rootFile; bool m_verbose; double m_errorX, m_errorY, m_errorZ; double m_missingErrorTranslation, m_missingErrorAngle; double m_stationErrorX, m_stationErrorY, m_stationErrorZ, m_stationErrorPhiX, m_stationErrorPhiY, m_stationErrorPhiZ; }; #endif