/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoTracker/PixelSeeding/interface/ThirdHitRZPredictionBase.h
37 строк
1 KB
mmusich
fix RecoTracker/Pixel* subsystems inclusions guards to comply withc cmssw rule 4.1
11 апр 2023, 10:15
11 апр 2023, 10:15
e88c626
Код
Авторство
О чём код?
#ifndef RecoTracker_PixelSeeding_ThirdHitRZPredictionBase_h #define RecoTracker_PixelSeeding_ThirdHitRZPredictionBase_h /** predicts a range in r-z for the position of third hit. * The is the base class with common code, the actual implementation * is interfaced in the ThirdHitRZPrediction template. * The margin is defined by hit errors and multiple scattering. */ #include "DataFormats/GeometryVector/interface/GlobalPoint.h" #include "RecoTracker/TkMSParametrization/interface/PixelRecoRange.h" #include "RecoTracker/TkTrackingRegions/interface/TkTrackingRegionsMargin.h" class DetLayer; class OrderedHitPair; class MultipleScatteringParametrisation; class ThirdHitRZPredictionBase { public: typedef PixelRecoRange<float> Range; typedef TkTrackingRegionsMargin<float> Margin; ThirdHitRZPredictionBase(); ThirdHitRZPredictionBase(float tolerance, const DetLayer* layer = nullptr); const Range& detRange() const { return theDetRange; } const Range& detSize() const { return theDetSize; } void initTolerance(float tolerance) { theTolerance = Margin(tolerance, tolerance); } void initLayer(const DetLayer* layer); protected: bool theBarrel, theForward; Range theDetRange, theDetSize; Margin theTolerance; }; #endif