/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TrackingTools/GeomPropagators/interface/StateOnTrackerBound.h
26 строк
693 B
Cms Build
Clang-Format
27 май 2019, 05:59
27 май 2019, 05:59
4ed5991
Код
Авторство
О чём код?
#ifndef GeomPropagators_StateOnTrackerBound_H #define GeomPropagators_StateOnTrackerBound_H class FreeTrajectoryState; class TrajectoryStateOnSurface; class Propagator; /** Propagates to the Tracker bounds, i.e. either to the * barrel cylinder or to one of the forward disks that * constitute the envelope of the sensitive Tracker volumes. * Ported from ORCA */ class StateOnTrackerBound { public: StateOnTrackerBound(const Propagator* prop); ~StateOnTrackerBound(); TrajectoryStateOnSurface operator()(const TrajectoryStateOnSurface& tsos) const; TrajectoryStateOnSurface operator()(const FreeTrajectoryState& fts) const; private: Propagator* thePropagator; }; #endif