CMS 3D CMS Logo

TFitParticleMCCart.cc
Go to the documentation of this file.
1 // Classname: TFitParticleMCCart
2 // Author: Jan E. Sundermann, Verena Klose (TU Dresden)
3 
4 //________________________________________________________________
5 //
6 // TFitParticleMCCart::
7 // --------------------
8 //
9 // Particle with cartesian 4vector parametrization and constrained mass
10 // [three free parameters (px, py, pz) with initial values
11 // (px, py, pz)]
12 //
13 // p = px*u1 + py*u2 + pz*u3
14 // E = Sqrt( |p|^2 + m^2 )
15 //
16 
17 #include <iostream>
20 #include "TMath.h"
21 
22 //----------------
23 // Constructor --
24 //----------------
26 
28  : TAbsFitParticle(fitParticle.GetName(), fitParticle.GetTitle()) {
29  _nPar = fitParticle._nPar;
30  _u1 = fitParticle._u1;
31  _u2 = fitParticle._u2;
32  _u3 = fitParticle._u3;
33  _covMatrix.ResizeTo(fitParticle._covMatrix);
34  _covMatrix = fitParticle._covMatrix;
35  _iniparameters.ResizeTo(fitParticle._iniparameters);
36  _iniparameters = fitParticle._iniparameters;
37  _parameters.ResizeTo(fitParticle._parameters);
38  _parameters = fitParticle._parameters;
39  _pini = fitParticle._pini;
40  _pcurr = fitParticle._pcurr;
41 }
42 
43 TFitParticleMCCart::TFitParticleMCCart(TVector3* p, Double_t M, const TMatrixD* theCovMatrix) : TAbsFitParticle() {
44  init(p, M, theCovMatrix);
45 }
46 
48  const TString& name, const TString& title, TVector3* p, Double_t M, const TMatrixD* theCovMatrix)
50  init(p, M, theCovMatrix);
51 }
52 
53 TAbsFitParticle* TFitParticleMCCart::clone(const TString& newname) const {
54  // Returns a copy of itself
55 
56  TAbsFitParticle* myclone = new TFitParticleMCCart(*this);
57  if (newname.Length() > 0)
58  myclone->SetName(newname);
59  return myclone;
60 }
61 
62 //--------------
63 // Destructor --
64 //--------------
66 
67 //--------------
68 // Operations --
69 //--------------
70 void TFitParticleMCCart::init(TVector3* p, Double_t M, const TMatrixD* theCovMatrix) {
71  _nPar = 3;
72  setIni4Vec(p, M);
73  setCovMatrix(theCovMatrix);
74 }
75 
76 TLorentzVector* TFitParticleMCCart::calc4Vec(const TMatrixD* params) {
77  // Calculates a 4vector corresponding to the given
78  // parameter values
79 
80  if (params == nullptr) {
81  return nullptr;
82  }
83 
84  if (params->GetNcols() != 1 || params->GetNrows() != _nPar) {
85  edm::LogError("WrongMatrixSize") << GetName() << "::calc4Vec - Parameter matrix has wrong size.";
86  return nullptr;
87  }
88 
89  Double_t X = (*params)(0, 0);
90  Double_t Y = (*params)(1, 0);
91  Double_t Z = (*params)(2, 0);
92  Double_t E = TMath::Sqrt(X * X + Y * Y + Z * Z + _pini.M2());
93 
94  TLorentzVector* vec = new TLorentzVector(X, Y, Z, E);
95  return vec;
96 }
97 
98 void TFitParticleMCCart::setIni4Vec(const TLorentzVector* pini) {
99  // Set the initial 4vector. Will also set the
100  // inital parameter values
101 
102  TVector3 vec(pini->Vect());
103  setIni4Vec(&vec, pini->M());
104 }
105 
106 void TFitParticleMCCart::setIni4Vec(const TVector3* p, Double_t M) {
107  // Set the initial 4vector. Will also set the
108  // inital parameter values
109 
110  if (p == nullptr) {
111  _iniparameters.ResizeTo(_nPar, 1);
112  _iniparameters(0, 0) = 0.;
113  _iniparameters(1, 0) = 0.;
114  _iniparameters(2, 0) = 0.;
115  _parameters.ResizeTo(_nPar, 1);
117 
118  _pini.SetXYZM(0., 0., 0., M);
119  _pcurr = _pini;
120 
121  } else {
122  _iniparameters.ResizeTo(_nPar, 1);
123  _iniparameters(0, 0) = p->x();
124  _iniparameters(1, 0) = p->y();
125  _iniparameters(2, 0) = p->z();
126  _parameters.ResizeTo(_nPar, 1);
128 
129  _pini.SetXYZM(p->x(), p->y(), p->z(), M);
130  _pcurr = _pini;
131 
132  _u1.SetXYZ(1., 0., 0.);
133  _u2.SetXYZ(0., 1., 0.);
134  _u3.SetXYZ(0., 0., 1.);
135  }
136 }
137 
139  // returns derivative dP/dy with P=(p,E) and y=(px, py, pz)
140  // the free parameters of the fit. The columns of the matrix contain
141  // (dP/dpx, dP/dpy, ...).
142 
143  TMatrixD* DerivativeMatrix = new TMatrixD(4, 3);
144  (*DerivativeMatrix) *= 0.;
145 
146  //1st column: dP/dx
147  (*DerivativeMatrix)(0, 0) = 1.;
148  (*DerivativeMatrix)(1, 0) = 0.;
149  (*DerivativeMatrix)(2, 0) = 0.;
150  (*DerivativeMatrix)(3, 0) = _parameters(0, 0) / _pcurr.E();
151 
152  //2nd column: dP/dy
153  (*DerivativeMatrix)(0, 1) = 0.;
154  (*DerivativeMatrix)(1, 1) = 1.;
155  (*DerivativeMatrix)(2, 1) = 0.;
156  (*DerivativeMatrix)(3, 1) = _parameters(1, 0) / _pcurr.E();
157 
158  //3rd column: dP/dz
159  (*DerivativeMatrix)(0, 2) = 0.;
160  (*DerivativeMatrix)(1, 2) = 0.;
161  (*DerivativeMatrix)(2, 2) = 1.;
162  (*DerivativeMatrix)(3, 2) = _parameters(2, 0) / _pcurr.E();
163 
164  return DerivativeMatrix;
165 }
166 
167 TMatrixD* TFitParticleMCCart::transform(const TLorentzVector& vec) {
168  // Returns the parameters corresponding to the given
169  // 4vector
170 
171  TVector3 vec3(vec.Vect());
172 
173  // retrieve parameters
174  TMatrixD* tparams = new TMatrixD(_nPar, 1);
175  (*tparams)(0, 0) = vec3.x();
176  (*tparams)(1, 0) = vec3.y();
177  (*tparams)(2, 0) = vec3.z();
178 
179  return tparams;
180 }
void init(TVector3 *p, Double_t M, const TMatrixD *theCovMatrix)
#define X(str)
Definition: MuonsGrabber.cc:38
Log< level::Error, false > LogError
TLorentzVector * calc4Vec(const TMatrixD *params) override
TLorentzVector _pini
~TFitParticleMCCart() override
void setIni4Vec(const TLorentzVector *pini) override
std::vector< vec2 > vec3
Definition: HCALResponse.h:17
TMatrixD * getDerivative() override
TMatrixD _parameters
TLorentzVector _pcurr
virtual void setCovMatrix(const TMatrixD *theCovMatrix)
TAbsFitParticle * clone(const TString &newname=TString("")) const override
TMatrixD _iniparameters
TMatrixD * transform(const TLorentzVector &vec) override