File indexing completed on 2024-04-06 12:31:38
0001 #ifndef CD_TrajectoryStateWithArbitraryError_H_
0002 #define CD_TrajectoryStateWithArbitraryError_H_
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #include "TrackingTools/TrajectoryState/interface/FreeTrajectoryState.h"
0013 #include "TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h"
0014
0015 class TrajectoryStateWithArbitraryError {
0016 private:
0017 typedef FreeTrajectoryState FTS;
0018 typedef TrajectoryStateOnSurface TSOS;
0019
0020 public:
0021 TSOS operator()(const TSOS& aTsos) const;
0022 };
0023
0024 #endif