/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/LaserAlignment/interface/LASGeometryUpdater.h
31 строка
1 KB
Cms Build
Clang-Format
20 май 2019, 13:01
20 май 2019, 13:01
125ebea
Код
Авторство
О чём код?
#ifndef __LASGEOMETRYUPDATER_H #define __LASGEOMETRYUPDATER_H #include <vector> #include <cmath> #include "Alignment/TrackerAlignment/interface/AlignableTracker.h" #include "Alignment/LaserAlignment/interface/LASEndcapAlignmentParameterSet.h" #include "Alignment/LaserAlignment/interface/LASBarrelAlignmentParameterSet.h" #include "Alignment/LaserAlignment/interface/LASGlobalData.h" #include "Alignment/LaserAlignment/interface/LASCoordinateSet.h" #include "Alignment/LaserAlignment/interface/LASGlobalLoop.h" #include "Alignment/LaserAlignment/interface/LASConstants.h" class LASGeometryUpdater { public: LASGeometryUpdater(LASGlobalData<LASCoordinateSet>&, LASConstants&); void ApplyBeamKinkCorrections(LASGlobalData<LASCoordinateSet>&) const; void EndcapUpdate(LASEndcapAlignmentParameterSet&, LASGlobalData<LASCoordinateSet>&); void TrackerUpdate(LASEndcapAlignmentParameterSet&, LASBarrelAlignmentParameterSet&, AlignableTracker&); void SetReverseDirection(bool); void SetMisalignmentFromRefGeometry(bool); private: LASGlobalData<LASCoordinateSet> nominalCoordinates; LASConstants lasConstants; bool isReverseDirection; bool isMisalignmentFromRefGeometry; }; #endif