CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
pat::CandKinResolution Class Reference

#include <CandKinResolution.h>

Public Types

typedef math::XYZTLorentzVector LorentzVector
 
enum  Parametrization {
  Invalid =0, Cart = 0x04, ECart = 0x14, Spher = 0x24,
  ESpher = 0x34, MomDev = 0x44, EMomDev = 0x54, MCCart = 0x03,
  MCSpher = 0x13, MCPInvSpher = 0x23, EtEtaPhi = 0x33, EtThetaPhi = 0x43,
  MCMomDev = 0x53, EScaledMomDev = 0x63
}
 
typedef float Scalar
 

Public Member Functions

 CandKinResolution ()
 
 CandKinResolution (Parametrization parametrization, const std::vector< Scalar > &covariances, const std::vector< Scalar > &constraints=std::vector< Scalar >())
 
 CandKinResolution (Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const std::vector< Scalar > &constraints=std::vector< Scalar >())
 Fill in a cresolution object given a parametrization code, a covariance matrix and a vector of constraints. More...
 
const std::vector< Scalar > & constraints () const
 The constraints associated with this parametrization. More...
 
const AlgebraicSymMatrix44covariance () const
 Returns the full covariance matrix. More...
 
uint32_t dimension () const
 Returns the number of free parameters in this parametrization. More...
 
Parametrization parametrization () const
 Return the code of the parametrization used in this object. More...
 
double resolE (const LorentzVector &p4) const
 Resolution on energy, given the 4-momentum of the associated Candidate. More...
 
double resolEt (const LorentzVector &p4) const
 Resolution on et, given the 4-momentum of the associated Candidate. More...
 
double resolEta (const LorentzVector &p4) const
 Resolution on eta, given the 4-momentum of the associated Candidate. More...
 
double resolM (const LorentzVector &p4) const
 
double resolP (const LorentzVector &p4) const
 Resolution on p, given the 4-momentum of the associated Candidate. More...
 
double resolPhi (const LorentzVector &p4) const
 Resolution on phi, given the 4-momentum of the associated Candidate. More...
 
double resolPInv (const LorentzVector &p4) const
 Resolution on 1/p, given the 4-momentum of the associated Candidate. More...
 
double resolPt (const LorentzVector &p4) const
 Resolution on pt, given the 4-momentum of the associated Candidate. More...
 
double resolPx (const LorentzVector &p4) const
 Resolution on px, given the 4-momentum of the associated Candidate. More...
 
double resolPy (const LorentzVector &p4) const
 Resolution on py, given the 4-momentum of the associated Candidate. More...
 
double resolPz (const LorentzVector &p4) const
 Resolution on pz, given the 4-momentum of the associated Candidate. More...
 
double resolTheta (const LorentzVector &p4) const
 Resolution on theta, given the 4-momentum of the associated Candidate. More...
 
 ~CandKinResolution ()
 

Private Member Functions

void fillMatrix () const
 Fill matrix from vector. More...
 
void fillVector ()
 Fill vectoor from matrix. More...
 

Private Attributes

std::vector< Scalarconstraints_
 Constraints. More...
 
std::vector< Scalarcovariances_
 Matrix, streamed as a vector. More...
 
AlgebraicSymMatrix44 covmatrix_
 Transient copy of the full 4x4 covariance matrix. More...
 
bool hasMatrix_
 Did we make the Matrix from the vector? More...
 
Parametrization parametrization_
 Parametrization code. More...
 

Detailed Description

Definition at line 10 of file CandKinResolution.h.

Member Typedef Documentation

Parametrizations

(lowercase means values, uppercase means fixed parameters)
Cart = (px, py, pz, m) KinFitter uses (px, py, pz, m/M0) with M0 = mass of the starting p4
ECart = (px, py, pz, e) as in KinFitter
MCCart = (px, py, pz, M) as in KinFitter
Spher = (p, theta, phi, m) KinFitter uses (p, theta, phi, m/M0) with M0 = mass of the starting p4
ESpher = (p, theta, phi, e) KinFitter uses (p, theta, phi, e/E0) with E0 = energy of the starting
MCSpher = (p, eta, phi, M) as in KinFitter
MCPInvSpher = (1/p, theta, phi, M) as in KinFitter
EtEtaPhi = (et, eta, phi, M == 0) as in KinFitter
EtThetaPhi = (et, theta, phi, M == 0) as in KinFitter
MomDev = (p/P0, dp_theta, dp_phi, m/M0), so that P = [0]*|P0|*u_r + [1]*u_theta + [2]*u_phi
the "u_<xyz>" are polar unit vectors around the initial momentum P0, their directions are:
u_r ~ P0, u_phi ~ u_z x u_r, u_theta ~ u_r x u_phi M0 is the mass of the initial 4-momentum.
EMomDev = (p/P0, dp_theta, dp_phi, E/E0) with the P defined as for MomDev
MCMomDev = (p/P0, dp_theta, dp_phi, M) with the P defined as for MomDev
EScaledMomDev = (p/P0, dp_theta, dp_phi,E/P=E0/P0) with the P defined as for MomDev, fixed E/p to E0/P0

Definition at line 32 of file CandKinResolution.h.

Definition at line 33 of file CandKinResolution.h.

Member Enumeration Documentation

Enumerator
Invalid 
Cart 
ECart 
Spher 
ESpher 
MomDev 
EMomDev 
MCCart 
MCSpher 
MCPInvSpher 
EtEtaPhi 
EtThetaPhi 
MCMomDev 
EScaledMomDev 

Definition at line 35 of file CandKinResolution.h.

Constructor & Destructor Documentation

pat::CandKinResolution::CandKinResolution ( )

Definition at line 6 of file CandKinResolution.cc.

6  :
8  covariances_(),
9  constraints_(),
10  hasMatrix_(false), covmatrix_()
11 {
12 }
bool hasMatrix_
Did we make the Matrix from the vector?
std::vector< Scalar > constraints_
Constraints.
Parametrization parametrization_
Parametrization code.
std::vector< Scalar > covariances_
Matrix, streamed as a vector.
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
pat::CandKinResolution::CandKinResolution ( Parametrization  parametrization,
const std::vector< Scalar > &  covariances,
const std::vector< Scalar > &  constraints = std::vector<Scalar>() 
)

Create a resolution object given a parametrization code, a covariance matrix (streamed as a vector) and a vector of constraints.

In the vector you can put either the full triangular block or just the diagonal terms

The triangular block should be written in a way that the constructor AlgebraicSymMatrixNN(covariance.begin(), covariance.end()) works (N = 3 or 4)

Definition at line 14 of file CandKinResolution.cc.

References fillMatrix().

14  :
16  covariances_(covariances),
18  hasMatrix_(true),
19  covmatrix_()
20 {
21  fillMatrix();
22 }
bool hasMatrix_
Did we make the Matrix from the vector?
std::vector< Scalar > constraints_
Constraints.
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
Parametrization parametrization() const
Return the code of the parametrization used in this object.
std::vector< Scalar > covariances_
Matrix, streamed as a vector.
const std::vector< Scalar > & constraints() const
The constraints associated with this parametrization.
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
pat::CandKinResolution::CandKinResolution ( Parametrization  parametrization,
const AlgebraicSymMatrix44 covariance,
const std::vector< Scalar > &  constraints = std::vector<Scalar>() 
)

Fill in a cresolution object given a parametrization code, a covariance matrix and a vector of constraints.

Definition at line 24 of file CandKinResolution.cc.

References fillMatrix(), and fillVector().

24  :
26  covariances_(),
28  hasMatrix_(true),
30 {
31  fillVector();
32  if (sizeof(double) != sizeof(Scalar)) { // should become boost::mpl::if_c
33  fillMatrix(); // forcing double => float => double conversion
34  }
35 }
bool hasMatrix_
Did we make the Matrix from the vector?
std::vector< Scalar > constraints_
Constraints.
const AlgebraicSymMatrix44 & covariance() const
Returns the full covariance matrix.
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
Parametrization parametrization() const
Return the code of the parametrization used in this object.
std::vector< Scalar > covariances_
Matrix, streamed as a vector.
void fillVector()
Fill vectoor from matrix.
const std::vector< Scalar > & constraints() const
The constraints associated with this parametrization.
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
pat::CandKinResolution::~CandKinResolution ( )

Definition at line 37 of file CandKinResolution.cc.

37  {
38 }

Member Function Documentation

const std::vector<Scalar>& pat::CandKinResolution::constraints ( ) const
inline

The constraints associated with this parametrization.

Definition at line 85 of file CandKinResolution.h.

References constraints_.

85 { return constraints_; }
std::vector< Scalar > constraints_
Constraints.
const AlgebraicSymMatrix44& pat::CandKinResolution::covariance ( void  ) const
inline

Returns the full covariance matrix.

Definition at line 79 of file CandKinResolution.h.

References covmatrix_, fillMatrix(), and hasMatrix_.

79  {
80  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
81  return covmatrix_;
82  }
bool hasMatrix_
Did we make the Matrix from the vector?
void fillMatrix() const
Fill matrix from vector.
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
uint32_t pat::CandKinResolution::dimension ( ) const
inline

Returns the number of free parameters in this parametrization.

Definition at line 74 of file CandKinResolution.h.

References parametrization_.

74  {
75  return (static_cast<uint32_t>(parametrization_) & 0x0F);
76  }
Parametrization parametrization_
Parametrization code.
void pat::CandKinResolution::fillMatrix ( ) const
private

Fill matrix from vector.

Definition at line 109 of file CandKinResolution.cc.

References pat::helper::ParametrizationHelper::dimension(), and i.

Referenced by CandKinResolution(), and covariance().

109  {
110  if (dimension() == 3) {
111  if (covariances_.size() == 3) {
112  for (int i = 0; i < 3; ++i) covmatrix_(i,i) = covariances_[i];
113  } else {
114  covmatrix_.Place_at(AlgebraicSymMatrix33(covariances_.begin(), covariances_.end()), 0, 0);
115  }
116  } else if (dimension() == 4) {
117  if (covariances_.size() == 4) {
118  for (int i = 0; i < 4; ++i) covmatrix_(i,i) = covariances_[i];
119  } else {
121  }
122  }
123 }
int i
Definition: DBlmapReader.cc:9
uint32_t dimension() const
Returns the number of free parameters in this parametrization.
ROOT::Math::SMatrix< double, 4, 4, ROOT::Math::MatRepSym< double, 4 > > AlgebraicSymMatrix44
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepSym< double, 3 > > AlgebraicSymMatrix33
std::vector< Scalar > covariances_
Matrix, streamed as a vector.
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
void pat::CandKinResolution::fillVector ( )
private

Fill vectoor from matrix.

Definition at line 101 of file CandKinResolution.cc.

References pat::helper::ParametrizationHelper::dimension().

Referenced by CandKinResolution().

101  {
102  if (dimension() == 3) {
104  covariances_.insert(covariances_.end(), sub.begin(), sub.end());
105  } else {
106  covariances_.insert(covariances_.end(), covmatrix_.begin(), covmatrix_.end());
107  }
108 }
uint32_t dimension() const
Returns the number of free parameters in this parametrization.
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepSym< double, 3 > > AlgebraicSymMatrix33
std::vector< Scalar > covariances_
Matrix, streamed as a vector.
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
Parametrization pat::CandKinResolution::parametrization ( ) const
inline

Return the code of the parametrization used in this object.

Definition at line 71 of file CandKinResolution.h.

References parametrization_.

71 { return parametrization_; }
Parametrization parametrization_
Parametrization code.
double pat::CandKinResolution::resolE ( const LorentzVector p4) const

Resolution on energy, given the 4-momentum of the associated Candidate.

Definition at line 55 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolE().

Referenced by pat::PATObject< reco::Muon >::resolE().

56 {
57  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
59 }
bool hasMatrix_
Did we make the Matrix from the vector?
double getResolE(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolEt ( const LorentzVector p4) const

Resolution on et, given the 4-momentum of the associated Candidate.

Definition at line 60 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolEt().

Referenced by pat::PATObject< reco::Muon >::resolEt().

61 {
62  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
64 }
double getResolEt(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
bool hasMatrix_
Did we make the Matrix from the vector?
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolEta ( const LorentzVector p4) const

Resolution on eta, given the 4-momentum of the associated Candidate.

Definition at line 40 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolEta().

Referenced by pat::PATObject< reco::Muon >::resolEta().

41 {
42  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
44 }
bool hasMatrix_
Did we make the Matrix from the vector?
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
double getResolEta(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolM ( const LorentzVector p4) const

Resolution on the invariant mass, given the 4-momentum of the associated Candidate Warning: returns 0 for mass-constrained parametrizations.

Definition at line 65 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolM().

Referenced by pat::PATObject< reco::Muon >::resolM().

66 {
67  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
69 }
bool hasMatrix_
Did we make the Matrix from the vector?
double getResolM(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolP ( const LorentzVector p4) const

Resolution on p, given the 4-momentum of the associated Candidate.

Definition at line 70 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolP().

Referenced by pat::PATObject< reco::Muon >::resolP().

71 {
72  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
74 }
bool hasMatrix_
Did we make the Matrix from the vector?
double getResolP(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolPhi ( const LorentzVector p4) const

Resolution on phi, given the 4-momentum of the associated Candidate.

Definition at line 50 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolPhi().

Referenced by pat::PATObject< reco::Muon >::resolPhi().

51 {
52  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
54 }
bool hasMatrix_
Did we make the Matrix from the vector?
double getResolPhi(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolPInv ( const LorentzVector p4) const

Resolution on 1/p, given the 4-momentum of the associated Candidate.

Definition at line 80 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolPInv().

Referenced by pat::PATObject< reco::Muon >::resolPInv().

81 {
82  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
84 }
bool hasMatrix_
Did we make the Matrix from the vector?
double getResolPInv(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolPt ( const LorentzVector p4) const

Resolution on pt, given the 4-momentum of the associated Candidate.

Definition at line 75 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolPt().

Referenced by pat::PATObject< reco::Muon >::resolPt().

76 {
77  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
79 }
bool hasMatrix_
Did we make the Matrix from the vector?
double getResolPt(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolPx ( const LorentzVector p4) const

Resolution on px, given the 4-momentum of the associated Candidate.

Definition at line 85 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolPx().

Referenced by pat::PATObject< reco::Muon >::resolPx().

86 {
87  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
89 }
bool hasMatrix_
Did we make the Matrix from the vector?
double getResolPx(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolPy ( const LorentzVector p4) const

Resolution on py, given the 4-momentum of the associated Candidate.

Definition at line 90 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolPy().

Referenced by pat::PATObject< reco::Muon >::resolPy().

91 {
92  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
94 }
bool hasMatrix_
Did we make the Matrix from the vector?
double getResolPy(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolPz ( const LorentzVector p4) const

Resolution on pz, given the 4-momentum of the associated Candidate.

Definition at line 95 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolPz().

Referenced by pat::PATObject< reco::Muon >::resolPz().

96 {
97  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
99 }
bool hasMatrix_
Did we make the Matrix from the vector?
double getResolPz(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.
double pat::CandKinResolution::resolTheta ( const LorentzVector p4) const

Resolution on theta, given the 4-momentum of the associated Candidate.

Definition at line 45 of file CandKinResolution.cc.

References pat::helper::ResolutionHelper::getResolTheta().

Referenced by pat::PATObject< reco::Muon >::resolTheta().

46 {
47  if (!hasMatrix_) { fillMatrix(); hasMatrix_ = true; }
49 }
bool hasMatrix_
Did we make the Matrix from the vector?
Parametrization parametrization_
Parametrization code.
void fillMatrix() const
Fill matrix from vector.
double p4[4]
Definition: TauolaWrapper.h:92
double getResolTheta(pat::CandKinResolution::Parametrization parametrization, const AlgebraicSymMatrix44 &covariance, const pat::CandKinResolution::LorentzVector &p4)
AlgebraicSymMatrix44 covmatrix_
Transient copy of the full 4x4 covariance matrix.

Member Data Documentation

std::vector<Scalar> pat::CandKinResolution::constraints_
private

Constraints.

Definition at line 131 of file CandKinResolution.h.

Referenced by constraints().

std::vector<Scalar> pat::CandKinResolution::covariances_
private

Matrix, streamed as a vector.

Definition at line 129 of file CandKinResolution.h.

AlgebraicSymMatrix44 pat::CandKinResolution::covmatrix_
mutableprivate

Transient copy of the full 4x4 covariance matrix.

Definition at line 139 of file CandKinResolution.h.

Referenced by covariance().

bool pat::CandKinResolution::hasMatrix_
mutableprivate

Did we make the Matrix from the vector?

Definition at line 136 of file CandKinResolution.h.

Referenced by covariance().

Parametrization pat::CandKinResolution::parametrization_
private

Parametrization code.

Definition at line 127 of file CandKinResolution.h.

Referenced by dimension(), and parametrization().