CMS 3D CMS Logo

CandKinResolution.h
Go to the documentation of this file.
1 #ifndef DataFormats_PatCandidates_CandKinResolution_h
2 #define DataFormats_PatCandidates_CandKinResolution_h
3 #include <vector>
8 
9 namespace pat {
31  public:
33  typedef float Scalar;
34 
36  Invalid = 0,
37  // 4D = 0xN4
38  Cart = 0x04,
39  ECart = 0x14,
40  Spher = 0x24,
41  ESpher = 0x34,
42  MomDev = 0x44,
43  EMomDev = 0x54,
44  // 3D =0xN3
45  MCCart = 0x03,
46  MCSpher = 0x13,
47  MCPInvSpher = 0x23,
48  EtEtaPhi = 0x33,
49  EtThetaPhi = 0x43,
50  MCMomDev = 0x53,
52  };
54 
64  const std::vector<Scalar> &covariances,
65  const std::vector<Scalar> &constraints = std::vector<Scalar>());
66 
70  const std::vector<Scalar> &constraints = std::vector<Scalar>());
72 
75 
77  uint32_t dimension() const { return dimensionFrom(parametrization_); }
78 
80  const AlgebraicSymMatrix44 &covariance() const { return covmatrix_; }
81 
83  const std::vector<Scalar> &constraints() const { return constraints_; }
84 
86  double resolEta(const LorentzVector &p4) const;
87 
89  double resolTheta(const LorentzVector &p4) const;
90 
92  double resolPhi(const LorentzVector &p4) const;
93 
95  double resolE(const LorentzVector &p4) const;
96 
98  double resolEt(const LorentzVector &p4) const;
99 
102  double resolM(const LorentzVector &p4) const;
103 
105  double resolP(const LorentzVector &p4) const;
106 
108  double resolPt(const LorentzVector &p4) const;
109 
111  double resolPInv(const LorentzVector &p4) const;
112 
114  double resolPx(const LorentzVector &p4) const;
115 
117  double resolPy(const LorentzVector &p4) const;
118 
120  double resolPz(const LorentzVector &p4) const;
121 
123  return (static_cast<uint32_t>(parametrization) & 0x0F);
124  }
125 
127  const std::vector<Scalar> &covariances,
128  AlgebraicSymMatrix44 &covmatrix);
129 
130  private:
131  // persistent
135  std::vector<Scalar> covariances_;
137  std::vector<Scalar> constraints_;
138 
139  // transient
140 
143 
144  //methods
145 
147  void fillMatrix();
148 
150  void fillVector();
151  };
152 
153  typedef std::vector<CandKinResolution> CandKinResolutionCollection;
155 } // namespace pat
156 
157 #endif
double resolPx(const LorentzVector &p4) const
Resolution on px, given the 4-momentum of the associated Candidate.
std::vector< Scalar > constraints_
Constraints.
double resolE(const LorentzVector &p4) const
Resolution on energy, given the 4-momentum of the associated Candidate.
uint32_t dimension() const
Returns the number of free parameters in this parametrization.
double resolEta(const LorentzVector &p4) const
Resolution on eta, given the 4-momentum of the associated Candidate.
double resolPInv(const LorentzVector &p4) const
Resolution on 1/p, given the 4-momentum of the associated Candidate.
double resolTheta(const LorentzVector &p4) const
Resolution on theta, given the 4-momentum of the associated Candidate.
Parametrization parametrization_
Parametrization code.
double resolPz(const LorentzVector &p4) const
Resolution on pz, given the 4-momentum of the associated Candidate.
double resolPhi(const LorentzVector &p4) const
Resolution on phi, given the 4-momentum of the associated Candidate.
double resolP(const LorentzVector &p4) const
Resolution on p, given the 4-momentum of the associated Candidate.
Definition: HeavyIon.h:7
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
const std::vector< Scalar > & constraints() const
The constraints associated with this parametrization.
static int dimensionFrom(Parametrization parametrization)
std::vector< Scalar > covariances_
Matrix, streamed as a vector.
void fillVector()
Fill vectoor from matrix.
double resolM(const LorentzVector &p4) const
double resolPt(const LorentzVector &p4) const
Resolution on pt, given the 4-momentum of the associated Candidate.
math::XYZTLorentzVector LorentzVector
Parametrization parametrization() const
Return the code of the parametrization used in this object.
ROOT::Math::SMatrix< double, 4, 4, ROOT::Math::MatRepSym< double, 4 > > AlgebraicSymMatrix44
edm::ValueMap< CandKinResolution > CandKinResolutionValueMap
static void fillMatrixFrom(Parametrization parametrization, const std::vector< Scalar > &covariances, AlgebraicSymMatrix44 &covmatrix)
math::XYZTLorentzVector LorentzVector
void fillMatrix()
Fill matrix from vector.
double resolPy(const LorentzVector &p4) const
Resolution on py, given the 4-momentum of the associated Candidate.
double resolEt(const LorentzVector &p4) const
Resolution on et, given the 4-momentum of the associated Candidate.
const AlgebraicSymMatrix44 & covariance() const
Returns the full covariance matrix.
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
std::vector< CandKinResolution > CandKinResolutionCollection