Fork me on GitHub

source: git/modules/TrackCovariance.cc@ 90975be

3.4.3pre08
Last change on this file since 90975be was 170a11d, checked in by michele <michele.selvaggi@…>, 4 years ago

included acceptance and hits in TrackCovariance

  • Property mode set to 100644
File size: 5.3 KB
RevLine 
[ff9fb2d9]1/*
2 * Delphes: a framework for fast simulation of a generic collider experiment
3 * Copyright (C) 2020 Universite catholique de Louvain (UCLouvain), Belgium
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19/** \class TrackCovariance
20 *
21 * Smears track parameters according to appropriate covariance matrix.
22 *
[170a11d]23 * \authors F. Bedeschi - INFN Pisa
24* P. Demin - UCLouvain, Louvain-la-Neuve
[1388e73]25 * M. Selvaggi - CERN
[ff9fb2d9]26 *
[170a11d]27 *
[ff9fb2d9]28 */
29
[7d790c1]30//FIXME add reference to Bedeschi-code
[1388e73]31//FIXME make sure about units of P, X
32//FIXME fix pt > 200 GeV issue and angle > 6.41
[7d790c1]33
[ff9fb2d9]34#include "modules/TrackCovariance.h"
35
36#include "classes/DelphesClasses.h"
37
38#include "TrackCovariance/SolGeom.h"
39#include "TrackCovariance/SolGridCov.h"
40#include "TrackCovariance/ObsTrk.h"
41
42#include "TLorentzVector.h"
43#include "TMath.h"
44#include "TObjArray.h"
45
[1388e73]46#include <iostream>
47#include <sstream>
48
49using namespace std;
50
[ff9fb2d9]51//------------------------------------------------------------------------------
52
53TrackCovariance::TrackCovariance() :
[170a11d]54 fGeometry(0), fCovariance(0), fAcx(0), fItInputArray(0)
[ff9fb2d9]55{
56 fGeometry = new SolGeom();
57 fCovariance = new SolGridCov();
58}
59
60//------------------------------------------------------------------------------
61
62TrackCovariance::~TrackCovariance()
63{
64 if(fGeometry) delete fGeometry;
65 if(fCovariance) delete fCovariance;
66}
67
68//------------------------------------------------------------------------------
69
70void TrackCovariance::Init()
71{
72 fBz = GetDouble("Bz", 0.0);
73 fGeometry->Read(GetString("DetectorGeometry", ""));
[170a11d]74 fNMinHits = GetInt("NMinHits", 6);
[ff9fb2d9]75
[170a11d]76 // load geometry
[ff9fb2d9]77 fCovariance->Calc(fGeometry);
[170a11d]78 fCovariance->SetMinHits(fNMinHits);
79 // load geometry
80 fAcx = fCovariance->AccPnt();
[ff9fb2d9]81
82 // import input array
83 fInputArray = ImportArray(GetString("InputArray", "TrackMerger/tracks"));
84 fItInputArray = fInputArray->MakeIterator();
85
86 // create output array
87
88 fOutputArray = ExportArray(GetString("OutputArray", "tracks"));
89}
90
91//------------------------------------------------------------------------------
92
93void TrackCovariance::Finish()
94{
95 if(fItInputArray) delete fItInputArray;
96}
97
98//------------------------------------------------------------------------------
99
100void TrackCovariance::Process()
101{
102 Candidate *candidate, *mother;
[1388e73]103 Double_t mass, p, pt, q, ct;
[3051ea17]104 Double_t dd0, ddz, dphi, dct, dp, dpt, dC;
[170a11d]105
[ff9fb2d9]106
107 fItInputArray->Reset();
108 while((candidate = static_cast<Candidate *>(fItInputArray->Next())))
109 {
[2ca681a]110
111 // converting to meters
112 const TLorentzVector &candidatePosition = candidate->InitialPosition*1e-03;
[ff9fb2d9]113 const TLorentzVector &candidateMomentum = candidate->Momentum;
114
[170a11d]115 if ( !fCovariance->IsAccepted(candidateMomentum.Vect()) ) continue;
116
[7b518f0]117 mass = candidateMomentum.M();
[ff9fb2d9]118
119 ObsTrk track(candidatePosition.Vect(), candidateMomentum.Vect(), candidate->Charge, fBz, fCovariance);
120
[46c8df8]121 mother = candidate;
[170a11d]122 candidate = static_cast<Candidate*>(candidate->Clone());
[1388e73]123
[7b518f0]124 candidate->Momentum.SetVectM(track.GetObsP(), mass);
[170a11d]125
[2ca681a]126 // converting back to mm
127 candidate->InitialPosition.SetXYZT(track.GetObsX().X()*1e03,track.GetObsX().Y()*1e03,track.GetObsX().Z()*1e03,candidatePosition.T()*1e03);
128
[3051ea17]129 // save full covariance 5x5 matrix internally (D0, phi, Curvature, dz, ctg(theta))
130 candidate->TrackCovariance = track.GetCov();
[1388e73]131
132 pt = candidate->Momentum.Pt();
133 p = candidate->Momentum.P();
134 q = track.GetObsQ();
135 ct = track.GetObsPar()[4];
136
[2ca681a]137 candidate->Xd = track.GetObsX().X()*1e03;
138 candidate->Yd = track.GetObsX().Y()*1e03;
139 candidate->Zd = track.GetObsX().Z()*1e03;
[170a11d]140
[2ca681a]141 candidate->D0 = track.GetObsPar()[0]*1e03;
142 candidate->Phi = track.GetObsPar()[1];
[ae5b7b7]143
144 // inverse of curvature
145 candidate->C = track.GetObsPar()[2]*1e-03;
[2ca681a]146 candidate->DZ = track.GetObsPar()[3]*1e03;
[1388e73]147 candidate->CtgTheta = track.GetObsPar()[4];
[2ca681a]148 candidate->P = track.GetObsP().Mag();
149 candidate->PT = pt;
150 candidate->Charge = q;
[1388e73]151
[170a11d]152 dd0 = TMath::Sqrt(track.GetCov()(0, 0))*1e03;
153 ddz = TMath::Sqrt(track.GetCov()(3, 3))*1e03;
154 dphi = TMath::Sqrt(track.GetCov()(1, 1));
155 dct = TMath::Sqrt(track.GetCov()(4, 4));
[1388e73]156 dpt = 2 * TMath::Sqrt( track.GetCov()(2, 2))*pt*pt / (0.2998*fBz);
157 dp = TMath::Sqrt((1.+ct*ct)*dpt*dpt + 4*pt*pt*ct*ct*dct*dct/(1.+ct*ct)/(1.+ct*ct));
[ae5b7b7]158 dC = TMath::Sqrt(track.GetCov()(2, 2))*1e-03;
[1388e73]159
160 candidate->ErrorD0 = dd0;
161 candidate->ErrorDZ = ddz;
162 candidate->ErrorP = dp;
[3051ea17]163 candidate->ErrorC = dC;
[1388e73]164 candidate->ErrorCtgTheta = dct;
165 candidate->ErrorPhi = dphi;
166 candidate->ErrorPT = dpt;
167 //candidate->TrackResolution = dpt / pt;
168 candidate->TrackResolution = dp / p;
[ff9fb2d9]169
170 candidate->AddCandidate(mother);
171
172 fOutputArray->Add(candidate);
173 }
174}
175
176//------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.