/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/LaserAlignment/interface/LASAlignmentTubeAlgorithm.h
31 строка
1 KB
Cms Build
Clang-Format
20 май 2019, 13:01
20 май 2019, 13:01
125ebea
Код
Авторство
О чём код?
#ifndef __LASALIGNMENTTUBEALGORITHM_H #define __LASALIGNMENTTUBEALGORITHM_H #include <vector> #include <iostream> #include <fstream> #include <cmath> #include "Alignment/LaserAlignment/interface/LASBarrelAlignmentParameterSet.h" #include "Alignment/LaserAlignment/interface/LASCoordinateSet.h" #include "Alignment/LaserAlignment/interface/LASGlobalData.h" #include "Alignment/LaserAlignment/interface/LASGlobalLoop.h" /// /// implementation of the alignment tube analytical algorithm /// class LASAlignmentTubeAlgorithm { public: LASAlignmentTubeAlgorithm(); LASBarrelAlignmentParameterSet CalculateParameters(LASGlobalData<LASCoordinateSet>&, LASGlobalData<LASCoordinateSet>&); double GetTIBTOBAlignmentParameterCorrection( int, int, int, LASGlobalData<LASCoordinateSet>&, LASBarrelAlignmentParameterSet&); double GetTEC2TECAlignmentParameterCorrection( int, int, int, LASGlobalData<LASCoordinateSet>&, LASBarrelAlignmentParameterSet&); void ReadMisalignmentFromFile(const char*, LASGlobalData<LASCoordinateSet>&, LASGlobalData<LASCoordinateSet>&); private: }; #endif