/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TrackingTools/TrackFitters/interface/TrajectoryStateWithArbitraryError.h
24 строки
762 B
Christopher Jones
Applied code formatting
29 май 2019, 22:00
29 май 2019, 22:00
c4ef96f
Код
Авторство
О чём код?
#ifndef CD_TrajectoryStateWithArbitraryError_H_ #define CD_TrajectoryStateWithArbitraryError_H_ /** \class TrajectoryStateWithArbitraryError * Creates a TrajectoryState with the same parameters as the inlut one, * but with "infinite" errors, i.e. errors so big that they don't * bias a fit starting with this state. Ported from ORCA * * \author todorov, cerati */ #include "TrackingTools/TrajectoryState/interface/FreeTrajectoryState.h" #include "TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h" class TrajectoryStateWithArbitraryError { private: typedef FreeTrajectoryState FTS; typedef TrajectoryStateOnSurface TSOS; public: TSOS operator()(const TSOS& aTsos) const; }; #endif //CD_TrajectoryStateWithArbitraryError_H_