CMS 3D CMS Logo

PFTauTransverseImpactParameter.h
Go to the documentation of this file.
1 #ifndef DataFormats_TauReco_PFTauTransverseImpactParameter_h
2 #define DataFormats_TauReco_PFTauTransverseImpactParameter_h
3 
4 /* class PFTauTransverseImpactParameter
5  *
6  * Stores information on the impact paramters and flight length of the hadronic decay of a tau lepton
7  *
8  * author: Ian M. Nugent
9  * This work is based on the impact parameter work by Rosamaria Venditti and reconstructing the 3 prong taus.
10  * The idea of the fully reconstructing the tau using a kinematic fit comes from
11  * Lars Perchalla and Philip Sauerland Theses under Achim Stahl supervision. This
12  * work was continued by Ian M. Nugent and Vladimir Cherepanov.
13  * Thanks goes to Christian Veelken and Evan Klose Friis for their help and suggestions.
14  */
15 
22 #include "TVector3.h"
23 
24 namespace reco {
26  enum { dimension = 3 };
27  enum { covarianceSize = dimension * (dimension + 1) / 2 };
28 
29  public:
33 
36  PFTauTransverseImpactParameter(const Point&, double, double, const Point&, double, double, const VertexRef&);
37  PFTauTransverseImpactParameter(const Point&,
38  double,
39  double,
40  const Point&,
41  double,
42  double,
43  const VertexRef&,
44  const Point&,
45  double,
46  const VertexRef&);
47 
50 
51  const Point& dxy_PCA() const { return pca_; }
52  double dxy() const { return dxy_; }
53  double dxy_error() const { return dxy_error_; }
54  double dxy_Sig() const { return (dxy_error_ != 0) ? (dxy_ / dxy_error_) : 0.; }
55  const Point& ip3d_PCA() const { return pca3d_; }
56  double ip3d() const { return ip3d_; }
57  double ip3d_error() const { return ip3d_error_; }
58  double ip3d_Sig() const { return (ip3d_error_ != 0) ? (ip3d_ / ip3d_error_) : 0.; }
59  const VertexRef& primaryVertex() const { return PV_; }
60  Point primaryVertexPos() const;
61  CovMatrix primaryVertexCov() const;
62  bool hasSecondaryVertex() const { return hasSV_; }
63  const Vector& flightLength() const;
64  double flightLengthSig() const;
65  CovMatrix flightLengthCov() const;
66  const VertexRef& secondaryVertex() const { return SV_; }
67  Point secondaryVertexPos() const;
68  CovMatrix secondaryVertexCov() const;
69 
70  private:
71  Point pca_;
72  double dxy_;
73  double dxy_error_;
74  Point pca3d_;
75  double ip3d_;
76  double ip3d_error_;
78  bool hasSV_;
79  Vector FlightLength_;
82  };
83 } // namespace reco
84 
85 #endif
ErrorD< N >::type type
Definition: Error.h:32
PFTauTransverseImpactParameter * clone() const
XYZVectorD XYZVector
spatial vector with cartesian internal representation
Definition: Vector3D.h:31
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
fixed size matrix