CMS 3D CMS Logo

VertexGhostTrackState.h
Go to the documentation of this file.
1 #ifndef RecoBTag_VertexGhostTrackState_h
2 #define RecoBTag_VertexGhostTrackState_h
3 
4 #include <utility>
5 
8 
10 
11 namespace reco {
12 
13  class GhostTrackPrediction;
14 
16  public:
18 
19  GlobalPoint globalPosition() const override { return position_; }
20  GlobalError cartesianError() const override { return covariance_; }
21  CovarianceMatrix cartesianCovariance() const override { return covariance_; }
22 
23  Vertex vertexStateOnGhostTrack(const GhostTrackPrediction &pred, bool withMeasurementError) const override;
24  Vertex vertexStateOnMeasurement(const GhostTrackPrediction &pred, bool withGhostTrackError) const override;
25 
26  private:
27  pointer clone() const override { return build<VertexGhostTrackState>(*this); }
28 
31  };
32 
33 } // namespace reco
34 
35 #endif // RecoBTag_VertexGhostTrackState_h
GlobalError cartesianError() const override
Vertex vertexStateOnGhostTrack(const GhostTrackPrediction &pred, bool withMeasurementError) const override
GlobalPoint globalPosition() const override
Vertex vertexStateOnMeasurement(const GhostTrackPrediction &pred, bool withGhostTrackError) const override
pointer clone() const override
CovarianceMatrix cartesianCovariance() const override
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< float >, ROOT::Math::GlobalCoordinateSystemTag > GlobalPoint
point in global coordinate system
Definition: Point3D.h:18
fixed size matrix
VertexGhostTrackState(const GlobalPoint &pos, const CovarianceMatrix &cov)