Fork me on GitHub

source: git/modules/TrackSmearing.cc@ 6fc566b

Timing
Last change on this file since 6fc566b was 84a097e, checked in by Michele Selvaggi <michele.selvaggi@…>, 5 years ago

first iteration of adding timing in Delphes

  • Property mode set to 100644
File size: 12.5 KB
Line 
1/** \class TrackSmearing
2 *
3 * Performs d0, dZ, p, Theta, Phi smearing of tracks.
4 *
5 * \authors A. Hart, M. Selvaggi
6 *
7*/
8
9#include "modules/TrackSmearing.h"
10
11#include "classes/DelphesClasses.h"
12#include "classes/DelphesFactory.h"
13#include "classes/DelphesFormula.h"
14
15#include "ExRootAnalysis/ExRootClassifier.h"
16#include "ExRootAnalysis/ExRootFilter.h"
17#include "ExRootAnalysis/ExRootResult.h"
18
19#include "TDatabasePDG.h"
20#include "TFile.h"
21#include "TFormula.h"
22#include "TLorentzVector.h"
23#include "TMath.h"
24#include "TObjArray.h"
25#include "TProfile2D.h"
26#include "TRandom3.h"
27#include "TString.h"
28
29#include <algorithm>
30#include <iostream>
31#include <sstream>
32#include <stdexcept>
33
34using namespace std;
35
36//------------------------------------------------------------------------------
37
38TrackSmearing::TrackSmearing() :
39 fD0Formula(0), fDZFormula(0), fPFormula(0), fCtgThetaFormula(0), fPhiFormula(0), fItInputArray(0)
40{
41 fD0Formula = new DelphesFormula;
42 fDZFormula = new DelphesFormula;
43 fPFormula = new DelphesFormula;
44 fCtgThetaFormula = new DelphesFormula;
45 fPhiFormula = new DelphesFormula;
46}
47
48//------------------------------------------------------------------------------
49
50TrackSmearing::~TrackSmearing()
51{
52 if(fD0Formula) delete fD0Formula;
53 if(fDZFormula) delete fDZFormula;
54 if(fPFormula) delete fPFormula;
55 if(fCtgThetaFormula) delete fCtgThetaFormula;
56 if(fPhiFormula) delete fPhiFormula;
57}
58
59//------------------------------------------------------------------------------
60
61void TrackSmearing::Init()
62{
63 fBz = GetDouble("Bz", 0.0);
64
65 // read resolution formula
66
67 // !!! IF WE WANT TO KEEP ROOT INPUT !!!
68 if(string(GetString("D0ResolutionFormula", "0.0")) != "0.0")
69 {
70 fD0Formula->Compile(GetString("D0ResolutionFormula", "0.0"));
71 fUseD0Formula = true;
72 }
73 else
74 {
75 fD0ResolutionFile = GetString("D0ResolutionFile", "errors.root");
76 fD0ResolutionHist = GetString("D0ResolutionHist", "d0");
77 fUseD0Formula = false;
78 }
79 if(string(GetString("DZResolutionFormula", "0.0")) != "0.0")
80 {
81 fDZFormula->Compile(GetString("DZResolutionFormula", "0.0"));
82 fUseDZFormula = true;
83 }
84 else
85 {
86 fDZResolutionFile = GetString("DZResolutionFile", "errors.root");
87 fDZResolutionHist = GetString("DZResolutionHist", "dz");
88 fUseDZFormula = false;
89 }
90 if(string(GetString("PResolutionFormula", "0.0")) != "0.0")
91 {
92 fPFormula->Compile(GetString("PResolutionFormula", "0.0"));
93 fUsePFormula = true;
94 }
95 else
96 {
97 fPResolutionFile = GetString("PResolutionFile", "errors.root");
98 fPResolutionHist = GetString("PResolutionHist", "p");
99 fUsePFormula = false;
100 }
101 if(string(GetString("CtgThetaResolutionFormula", "0.0")) != "0.0")
102 {
103 fCtgThetaFormula->Compile(GetString("CtgThetaResolutionFormula", "0.0"));
104 fUseCtgThetaFormula = true;
105 }
106 else
107 {
108 fCtgThetaResolutionFile = GetString("CtgThetaResolutionFile", "errors.root");
109 fCtgThetaResolutionHist = GetString("CtgThetaResolutionHist", "ctgTheta");
110 fUseCtgThetaFormula = false;
111 }
112 if(string(GetString("PhiResolutionFormula", "0.0")) != "0.0")
113 {
114 fPhiFormula->Compile(GetString("PhiResolutionFormula", "0.0"));
115 fUsePhiFormula = true;
116 }
117 else
118 {
119 fPhiResolutionFile = GetString("PhiResolutionFile", "errors.root");
120 fPhiResolutionHist = GetString("PhiResolutionHist", "phi");
121 fUsePhiFormula = false;
122 }
123
124 fApplyToPileUp = GetBool("ApplyToPileUp", true);
125
126 // import input array
127
128 fInputArray = ImportArray(GetString("InputArray", "ParticlePropagator/stableParticles"));
129 fItInputArray = fInputArray->MakeIterator();
130
131 // import beamspot
132 try
133 {
134 fBeamSpotInputArray = ImportArray(GetString("BeamSpotInputArray", "BeamSpotFilter/beamSpotParticle"));
135 }
136 catch(runtime_error &e)
137 {
138 fBeamSpotInputArray = 0;
139 }
140
141 // create output array
142
143 fOutputArray = ExportArray(GetString("OutputArray", "stableParticles"));
144}
145
146//------------------------------------------------------------------------------
147
148void TrackSmearing::Finish()
149{
150 if(fItInputArray) delete fItInputArray;
151}
152
153//------------------------------------------------------------------------------
154
155void TrackSmearing::Process()
156{
157 Int_t iCandidate = 0;
158 TLorentzVector beamSpotPosition;
159 Candidate *candidate, *mother;
160 Double_t pt, eta, d0, d0Error, trueD0, dz, dzError, trueDZ, p, pError, trueP, ctgTheta, ctgThetaError, trueCtgTheta, phi, phiError, truePhi, m;
161 Double_t x, y, z, t, px, py, pz, theta;
162 Double_t q, r;
163 Double_t x_c, y_c, r_c, phi_0;
164 Double_t rcu, rc2, xd, yd, zd;
165 const Double_t c_light = 2.99792458E8;
166 TProfile2D *d0ErrorHist = NULL,
167 *dzErrorHist = NULL,
168 *pErrorHist = NULL,
169 *ctgThetaErrorHist = NULL,
170 *phiErrorHist = NULL;
171
172 if(!fBeamSpotInputArray || fBeamSpotInputArray->GetSize() == 0)
173 beamSpotPosition.SetXYZT(0.0, 0.0, 0.0, 0.0);
174 else
175 {
176 Candidate &beamSpotCandidate = *((Candidate *)fBeamSpotInputArray->At(0));
177 beamSpotPosition = beamSpotCandidate.Position;
178 }
179
180 if(!fUseD0Formula)
181 {
182 TFile *fin = TFile::Open(fD0ResolutionFile.c_str());
183 d0ErrorHist = (TProfile2D *)fin->Get(fD0ResolutionHist.c_str());
184 d0ErrorHist->SetDirectory(0);
185 fin->Close();
186 }
187 if(!fUseDZFormula)
188 {
189 TFile *fin = TFile::Open(fDZResolutionFile.c_str());
190 dzErrorHist = (TProfile2D *)fin->Get(fDZResolutionHist.c_str());
191 dzErrorHist->SetDirectory(0);
192 fin->Close();
193 }
194 if(!fUsePFormula)
195 {
196 TFile *fin = TFile::Open(fPResolutionFile.c_str());
197 pErrorHist = (TProfile2D *)fin->Get(fPResolutionHist.c_str());
198 pErrorHist->SetDirectory(0);
199 fin->Close();
200 }
201 if(!fUseCtgThetaFormula)
202 {
203 TFile *fin = TFile::Open(fCtgThetaResolutionFile.c_str());
204 ctgThetaErrorHist = (TProfile2D *)fin->Get(fCtgThetaResolutionHist.c_str());
205 ctgThetaErrorHist->SetDirectory(0);
206 fin->Close();
207 }
208 if(!fUsePhiFormula)
209 {
210 TFile *fin = TFile::Open(fPhiResolutionFile.c_str());
211 phiErrorHist = (TProfile2D *)fin->Get(fPhiResolutionHist.c_str());
212 phiErrorHist->SetDirectory(0);
213 fin->Close();
214 }
215
216 fItInputArray->Reset();
217 while((candidate = static_cast<Candidate *>(fItInputArray->Next())))
218 {
219
220 const TLorentzVector &momentum = candidate->Momentum;
221 const TLorentzVector &position = candidate->InitialPosition;
222
223 pt = momentum.Pt();
224 eta = momentum.Eta();
225
226 d0 = trueD0 = candidate->D0;
227 dz = trueDZ = candidate->DZ;
228
229 p = trueP = candidate->P;
230 ctgTheta = trueCtgTheta = candidate->CtgTheta;
231 phi = truePhi = candidate->Phi;
232
233 if(fUseD0Formula)
234 d0Error = fD0Formula->Eval(pt, eta);
235 else
236 {
237 Int_t xbin, ybin;
238
239 xbin = pt < d0ErrorHist->GetXaxis()->GetXmax() ? d0ErrorHist->GetXaxis()->FindBin(pt) : d0ErrorHist->GetXaxis()->GetBinCenter(d0ErrorHist->GetXaxis()->GetNbins());
240 ybin = d0ErrorHist->GetYaxis()->FindBin(TMath::Abs(eta));
241 d0Error = d0ErrorHist->GetBinContent(xbin, ybin);
242 if(!d0Error)
243 d0Error = -1.0;
244 }
245 if(d0Error < 0.0)
246 continue;
247
248 if(fUseDZFormula)
249 dzError = fDZFormula->Eval(pt, eta);
250 else
251 {
252 Int_t xbin, ybin;
253
254 xbin = pt < dzErrorHist->GetXaxis()->GetXmax() ? dzErrorHist->GetXaxis()->FindBin(pt) : dzErrorHist->GetXaxis()->GetBinCenter(dzErrorHist->GetXaxis()->GetNbins());
255 ybin = dzErrorHist->GetYaxis()->FindBin(TMath::Abs(eta));
256 dzError = dzErrorHist->GetBinContent(xbin, ybin);
257 if(!dzError)
258 dzError = -1.0;
259 }
260 if(dzError < 0.0)
261 continue;
262
263 if(fUsePFormula)
264 pError = fPFormula->Eval(pt, eta) * p;
265 else
266 {
267 Int_t xbin, ybin;
268
269 xbin = pt < pErrorHist->GetXaxis()->GetXmax() ? pErrorHist->GetXaxis()->FindBin(pt) : pErrorHist->GetXaxis()->GetBinCenter(pErrorHist->GetXaxis()->GetNbins());
270 ybin = pErrorHist->GetYaxis()->FindBin(TMath::Abs(eta));
271 pError = pErrorHist->GetBinContent(xbin, ybin) * p;
272 if(!pError)
273 pError = -1.0;
274 }
275 if(pError < 0.0)
276 continue;
277
278 if(fUseCtgThetaFormula)
279 ctgThetaError = fCtgThetaFormula->Eval(pt, eta);
280 else
281 {
282 Int_t xbin, ybin;
283
284 xbin = pt < ctgThetaErrorHist->GetXaxis()->GetXmax() ? ctgThetaErrorHist->GetXaxis()->FindBin(pt) : ctgThetaErrorHist->GetXaxis()->GetBinCenter(ctgThetaErrorHist->GetXaxis()->GetNbins());
285 ybin = ctgThetaErrorHist->GetYaxis()->FindBin(TMath::Abs(eta));
286 ctgThetaError = ctgThetaErrorHist->GetBinContent(xbin, ybin);
287 if(!ctgThetaError)
288 ctgThetaError = -1.0;
289 }
290 if(ctgThetaError < 0.0)
291 continue;
292
293 if(fUsePhiFormula)
294 phiError = fPhiFormula->Eval(pt, eta);
295 else
296 {
297 Int_t xbin, ybin;
298
299 xbin = pt < phiErrorHist->GetXaxis()->GetXmax() ? phiErrorHist->GetXaxis()->FindBin(pt) : phiErrorHist->GetXaxis()->GetBinCenter(phiErrorHist->GetXaxis()->GetNbins());
300 ybin = phiErrorHist->GetYaxis()->FindBin(TMath::Abs(eta));
301 phiError = phiErrorHist->GetBinContent(xbin, ybin);
302 if(!phiError)
303 phiError = -1.0;
304 }
305 if(phiError < 0.0)
306 continue;
307
308 if(fApplyToPileUp || !candidate->IsPU)
309 {
310 d0 = gRandom->Gaus(d0, d0Error);
311 dz = gRandom->Gaus(dz, dzError);
312 p = gRandom->Gaus(p, pError);
313 ctgTheta = gRandom->Gaus(ctgTheta, ctgThetaError);
314 phi = gRandom->Gaus(phi, phiError);
315 }
316
317 if(p < 0.0) continue;
318 while(phi > TMath::Pi()) phi -= TMath::TwoPi();
319 while(phi <= -TMath::Pi()) phi += TMath::TwoPi();
320
321 mother = candidate;
322 candidate = static_cast<Candidate *>(candidate->Clone());
323 candidate->D0 = d0;
324 candidate->DZ = dz;
325 candidate->P = p;
326 candidate->CtgTheta = ctgTheta;
327 candidate->Phi = phi;
328
329 theta = TMath::ACos(ctgTheta / TMath::Sqrt(1.0 + ctgTheta * ctgTheta));
330 m = candidate->Momentum.M();
331
332 candidate->Momentum.SetPx(p * TMath::Cos(phi) * TMath::Sin(theta));
333 candidate->Momentum.SetPy(p * TMath::Sin(phi) * TMath::Sin(theta));
334 candidate->Momentum.SetPz(p * TMath::Cos(theta));
335 //candidate->Momentum.SetE(candidate->Momentum.Pt() * TMath::CosH(eta));
336 candidate->Momentum.SetE( TMath::Sqrt(m*m + p*p) );
337 candidate->PT = candidate->Momentum.Pt();
338
339 x = position.X();
340 y = position.Y();
341 z = position.Z();
342 t = position.T();
343 px = candidate->Momentum.Px();
344 py = candidate->Momentum.Py();
345 pz = candidate->Momentum.Pz();
346 pt = candidate->Momentum.Pt();
347
348 // -- solve for delta: d0' = ( (x+delta)*py' - (y+delta)*px' )/pt'
349
350 candidate->InitialPosition.SetX(x + ((px * y - py * x + d0 * pt) / (py - px)));
351 candidate->InitialPosition.SetY(y + ((px * y - py * x + d0 * pt) / (py - px)));
352 x = candidate->InitialPosition.X();
353 y = candidate->InitialPosition.Y();
354 candidate->InitialPosition.SetZ(z + ((pz * (px * (x - beamSpotPosition.X()) + py * (y - beamSpotPosition.Y())) + pt * pt * (dz - z)) / (pt * pt)));
355 z = candidate->InitialPosition.Z();
356
357 candidate->InitialPosition.SetT(t);
358
359 // update closest approach
360 x *= 1.0E-3;
361 y *= 1.0E-3;
362 z *= 1.0E-3;
363
364 q = candidate->Charge;
365
366 r = pt / (q * fBz) * 1.0E9 / c_light; // in [m]
367 phi_0 = TMath::ATan2(py, px); // [rad] in [-pi, pi]
368
369 // 2. helix axis coordinates
370 x_c = x + r * TMath::Sin(phi_0);
371 y_c = y - r * TMath::Cos(phi_0);
372 r_c = TMath::Hypot(x_c, y_c);
373
374 rcu = TMath::Abs(r);
375 rc2 = r_c * r_c;
376
377 // calculate coordinates of closest approach to track circle in transverse plane xd, yd, zd
378 xd = x_c * x_c * x_c - x_c * rcu * r_c + x_c * y_c * y_c;
379 xd = (rc2 > 0.0) ? xd / rc2 : -999;
380 yd = y_c * (-rcu * r_c + rc2);
381 yd = (rc2 > 0.0) ? yd / rc2 : -999;
382 zd = z + (TMath::Sqrt(xd * xd + yd * yd) - TMath::Sqrt(x * x + y * y)) * pz / pt;
383
384 candidate->Xd = xd * 1.0E3;
385 candidate->Yd = yd * 1.0E3;
386 candidate->Zd = zd * 1.0E3;
387 candidate->Td = -9999*c_light*1E-3;
388
389 if(fApplyToPileUp || !candidate->IsPU)
390 {
391 candidate->ErrorD0 = d0Error;
392 candidate->ErrorDZ = dzError;
393 candidate->ErrorP = pError;
394 candidate->ErrorCtgTheta = ctgThetaError;
395 candidate->ErrorPhi = phiError;
396 candidate->ErrorPT = ptError(p, ctgTheta, pError, ctgThetaError);
397 candidate->TrackResolution = pError / p;
398 }
399
400 candidate->AddCandidate(mother);
401 fOutputArray->Add(candidate);
402
403 iCandidate++;
404 }
405}
406
407Double_t TrackSmearing::ptError(const Double_t p, const Double_t ctgTheta, const Double_t dP, const Double_t dCtgTheta)
408{
409 Double_t a, b;
410 a = (p * p * ctgTheta * ctgTheta * dCtgTheta * dCtgTheta) / ((ctgTheta * ctgTheta + 1) * (ctgTheta * ctgTheta + 1) * (ctgTheta * ctgTheta + 1));
411 b = (dP * dP) / (ctgTheta * ctgTheta + 1);
412 return sqrt(a + b);
413}
414
415//------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.