/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/SurveyAnalysis/plugins/SurveyMisalignmentInput.h
48 строк
1 KB
Ernesto Migliore
revert PR 40443 w/o introduction bricked pixels
24 апр 2024, 13:20
24 апр 2024, 13:20
4eaef34
Код
Авторство
О чём код?
#ifndef Alignment_SurveyAnalysis_SurveyMisalignmentInput_h #define Alignment_SurveyAnalysis_SurveyMisalignmentInput_h /** \class SurveyMisalignmentInput * * Class to misaligned tracker from DB. * * $Date: 2012/06/13 09:22:26 $ * $Revision: 1.5 $ * \author Chung Khim Lae */ // user include files #include "Alignment/SurveyAnalysis/interface/SurveyInputBase.h" #include "Alignment/SurveyAnalysis/interface/SurveyInputTextReader.h" #include "FWCore/Framework/interface/ESHandle.h" class AlignableSurface; class Alignments; class SurveyMisalignmentInput : public SurveyInputBase { public: SurveyMisalignmentInput(const edm::ParameterSet&); /// Read ideal tracker geometry from DB void analyze(const edm::Event&, const edm::EventSetup&) override; private: const edm::ESGetToken<TrackerTopology, TrackerTopologyRcd> tTopoToken_; const edm::ESGetToken<GeometricDet, IdealGeometryRecord> geomDetToken_; const edm::ESGetToken<PTrackerParameters, PTrackerParametersRcd> ptpToken_; const edm::ESGetToken<PTrackerAdditionalParametersPerDet, PTrackerAdditionalParametersPerDetRcd> ptitpToken_; const edm::ESGetToken<Alignments, TrackerAlignmentRcd> aliToken_; SurveyInputTextReader::MapType uIdMap; std::string textFileName; edm::ESHandle<Alignments> alignments; /// Add survey info to an alignable void addSurveyInfo(Alignable*); /// Get alignable surface from misalignments.db AlignableSurface getAlignableSurface(align::ID); }; #endif