/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/MuonAlignmentAlgorithms/interface/DTMuonSLToSL.h
45 строк
962 B
Cms Build
Clang-Format
16 май 2019, 00:01
16 май 2019, 00:01
92500ad
Код
Авторство
О чём код?
#ifndef Alignment_MuonAlignmentAlgorithms_DTMuonSLToSL_H #define Alignment_MuonAlignmentAlgorithms_DTMuonSLToSL_H /** \class DTMuonSLToSL * $Date$ * $Revision: 1.3 $ * \author Luca Scodellaro <Luca.Scodellaro@cern.ch> */ #include "Alignment/MuonAlignmentAlgorithms/interface/DTMuonLocalAlignment.h" #include "TMatrixD.h" #include "TFile.h" #include "TTree.h" #include <string> #include "TChain.h" #include <cmath> class DTMuonSLToSL : public DTMuonLocalAlignment { public: DTMuonSLToSL(std::string, int, float, float, TFile *); ~DTMuonSLToSL(); void calculationSLToSL(); TMatrixD returnCSLMatrix(float, float, float); TMatrixD returnbSLMatrix(float, float, float); void setBranchTree(); private: //Variables for the output tree //------------------------------------- int whC, stC, srC; float dx, dz, phiy; float cov[3][3]; //-------------------------------------- float ptMax, ptMin; TTree *ttreeOutput; }; #endif