CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
HTrack.cc
Go to the documentation of this file.
6 
7 //#include "DQMServices/Core/interface/DQMStore.h"
9 
10 #include "TFile.h"
11 #include "TDirectory.h"
12 
13 using namespace std;
14 
15 HTrack::HTrack(DQMStore::IBooker& ibooker, string dirName_, string name, string whereIs)
16  : theName(name.c_str()), where(whereIs.c_str()) {
17  ibooker.cd();
18  std::string dirName = dirName_;
19  dirName += "/";
20  dirName += name;
21  dirName += "_";
22  dirName += whereIs;
23 
24  ibooker.setCurrentFolder(dirName);
25  hVariables = new HTrackVariables(ibooker, dirName, name, whereIs);
26 
27  ibooker.cd();
28  string resName = dirName;
29  resName += "/Resolution";
30  hResolution = new HResolution(ibooker, resName, name + "_Res", whereIs);
31  ibooker.cd();
32  ibooker.setCurrentFolder(dirName);
33  hTDRResolution = new HResolution(ibooker, resName, name + "_TDRRes", whereIs);
34 
35  ibooker.cd();
36  ibooker.setCurrentFolder(dirName);
37  string pullName = dirName;
38  pullName += "/Pull";
39  hPull = new HResolution(ibooker, pullName, name + "_Pull", whereIs);
40  hTDRPull = new HResolution(ibooker, pullName, name + "_TDRPull", whereIs);
41 
42  doSubHisto = false;
43 
44  if (doSubHisto) {
45  ibooker.cd();
46  ibooker.setCurrentFolder(dirName);
47  string subName = dirName;
48  subName += "/subHistos";
49  // [5-10] GeV range
50  hResolution_5_10 = new HResolution(ibooker, subName, name + "_Res_Pt_5_10", whereIs);
51  hTDRResolution_5_10 = new HResolution(ibooker, subName, name + "_TDRRes_Pt_5_10", whereIs);
52  hPull_5_10 = new HResolution(ibooker, subName, name + "_Pull_Pt_5_10", whereIs);
53 
54  hResolution_10_40 = new HResolution(ibooker, subName, name + "_Res_Pt_10_40", whereIs);
55  hTDRResolution_10_40 = new HResolution(ibooker, subName, name + "_TDRRes_Pt_10_40", whereIs);
56  hPull_10_40 = new HResolution(ibooker, subName, name + "_Pull_Pt_10_40", whereIs);
57 
58  hResolution_40_70 = new HResolution(ibooker, subName, name + "_Res_Pt_40_70", whereIs);
59  hTDRResolution_40_70 = new HResolution(ibooker, subName, name + "_TDRRes_Pt_40_70", whereIs);
60  hPull_40_70 = new HResolution(ibooker, subName, name + "_Pull_Pt_40_70", whereIs);
61 
62  hResolution_70_100 = new HResolution(ibooker, subName, name + "_Res_Pt_70_100", whereIs);
63  hTDRResolution_70_100 = new HResolution(ibooker, subName, name + "_TDRRes_Pt_70_100", whereIs);
64  hPull_70_100 = new HResolution(ibooker, subName, name + "_Pull_Pt_70_100", whereIs);
65 
66  hResolution_08 = new HResolution(ibooker, subName, name + "_Res_Eta_08", whereIs);
67  hTDRResolution_08 = new HResolution(ibooker, subName, name + "_TDRRes_Eta_08", whereIs);
68  hPull_08 = new HResolution(ibooker, subName, name + "_Pull_Eta_08", whereIs);
69 
70  hResolution_08_12 = new HResolution(ibooker, subName, name + "_Res_Eta_08_12", whereIs);
71  hTDRResolution_08_12 = new HResolution(ibooker, subName, name + "_TDRRes_Eta_08_12", whereIs);
72  hPull_08_12 = new HResolution(ibooker, subName, name + "_Pull_Eta_08_12", whereIs);
73 
74  hResolution_12_21 = new HResolution(ibooker, subName, name + "_Res_Eta_12_21", whereIs);
75  hTDRResolution_12_21 = new HResolution(ibooker, subName, name + "_TDRRes_Eta_12_21", whereIs);
76  hPull_12_21 = new HResolution(ibooker, subName, name + "_Pull_Eta_12_21", whereIs);
77 
78  hResolution_12_24 = new HResolution(ibooker, subName, name + "_Res_Eta_12_24", whereIs);
79  hTDRResolution_12_24 = new HResolution(ibooker, subName, name + "_TDRRes_Eta_12_24", whereIs);
80  hPull_12_24 = new HResolution(ibooker, subName, name + "_Pull_Eta_12_24", whereIs);
81 
82  hResolution_12_21_plus = new HResolution(ibooker, subName, name + "_Res_Eta_12_21_plus", whereIs);
83  hTDRResolution_12_21_plus = new HResolution(ibooker, subName, name + "_TDRRes_Eta_12_21_plus", whereIs);
84  hPull_12_21_plus = new HResolution(ibooker, subName, name + "_Pull_Eta_12_21_plus", whereIs);
85 
86  hResolution_12_24_plus = new HResolution(ibooker, subName, name + "_Res_Eta_12_24_plus", whereIs);
87  hTDRResolution_12_24_plus = new HResolution(ibooker, subName, name + "_TDRRes_Eta_12_24_plus", whereIs);
88  hPull_12_24_plus = new HResolution(ibooker, subName, name + "_Pull_Eta_12_24_plus", whereIs);
89 
90  hResolution_12_21_minus = new HResolution(ibooker, subName, name + "_Res_Eta_12_21_minus", whereIs);
91  hTDRResolution_12_21_minus = new HResolution(ibooker, subName, name + "_TDRRes_Eta_12_21_minus", whereIs);
92  hPull_12_21_minus = new HResolution(ibooker, subName, name + "_Pull_Eta_12_21_minus", whereIs);
93 
94  hResolution_12_24_minus = new HResolution(ibooker, subName, name + "_Res_Eta_12_24_minus", whereIs);
95  hTDRResolution_12_24_minus = new HResolution(ibooker, subName, name + "_TDRRes_Eta_12_24_minus", whereIs);
96  hPull_12_24_minus = new HResolution(ibooker, subName, name + "_Pull_Eta_12_24_minus", whereIs);
97  }
98 }
99 
100 double HTrack::pull(double rec, double sim, double sigmarec) { return (rec - sim) / sigmarec; }
101 
102 double HTrack::resolution(double rec, double sim) { return (rec - sim) / sim; }
103 
105 
107  hVariables->Fill(
108  fts.momentum().mag(), fts.momentum().perp(), fts.momentum().eta(), fts.momentum().phi(), fts.charge());
109 }
110 
111 void HTrack::FillDeltaR(double deltaR) { hVariables->FillDeltaR(deltaR); }
112 
114  return hVariables->computeEfficiency(sim, ibooker);
115 }
116 
119 }
120 
122  // Global Resolution
123  computeResolution(fts, simTrack, hResolution);
124  computePull(fts, simTrack, hPull);
125 
126  // TDR Resolution
127  computeTDRResolution(fts, simTrack, hTDRResolution);
128  // computeTDRPull(fts,simTracks,hTDRPull);
129 
130  hVariables->Fill(sqrt(simTrack.momentum().Perp2()), simTrack.momentum().eta(),
131  simTrack.momentum().phi()); //FIXME
132 
133  if (doSubHisto) {
134  // [5-10] GeV range
135  if (sqrt(simTrack.momentum().Perp2()) < 10) {
136  computeResolution(fts, simTrack, hResolution_5_10);
138  computePull(fts, simTrack, hPull_5_10);
139  }
140 
141  // [10-40] GeV range
142  if (sqrt(simTrack.momentum().Perp2()) >= 10 && sqrt(simTrack.momentum().Perp2()) < 40) {
143  computeResolution(fts, simTrack, hResolution_10_40);
145  computePull(fts, simTrack, hPull_10_40);
146  }
147 
148  // [40-70] GeV range
149  if (sqrt(simTrack.momentum().Perp2()) >= 40 && sqrt(simTrack.momentum().Perp2()) < 70) {
150  computeResolution(fts, simTrack, hResolution_40_70);
152  computePull(fts, simTrack, hPull_40_70);
153  }
154 
155  // [70-100] GeV range
156  if (sqrt(simTrack.momentum().Perp2()) >= 70 && sqrt(simTrack.momentum().Perp2()) < 100) {
157  computeResolution(fts, simTrack, hResolution_70_100);
159  computePull(fts, simTrack, hPull_70_100);
160  }
161 
162  // eta range |eta|<0.8
163  if (abs(simTrack.momentum().eta()) <= 0.8) {
164  computeResolution(fts, simTrack, hResolution_08);
165  computeTDRResolution(fts, simTrack, hTDRResolution_08);
166  computePull(fts, simTrack, hPull_08);
167  }
168 
169  // eta range 0.8<|eta|<1.2
170  if (abs(simTrack.momentum().eta()) > 0.8 && abs(simTrack.momentum().eta()) <= 1.2) {
171  computeResolution(fts, simTrack, hResolution_08_12);
173  computePull(fts, simTrack, hPull_08_12);
174  }
175 
176  // eta range 1.2<|eta|<2.1
177  if (abs(simTrack.momentum().eta()) > 1.2 && abs(simTrack.momentum().eta()) <= 2.1) {
178  computeResolution(fts, simTrack, hResolution_12_21);
180  computePull(fts, simTrack, hPull_12_21);
181 
182  if (simTrack.momentum().eta() > 0) {
185  computePull(fts, simTrack, hPull_12_21_plus);
186  } else {
189  computePull(fts, simTrack, hPull_12_21_minus);
190  }
191  }
192 
193  // eta range 1.2<|eta|<2.4
194  if (abs(simTrack.momentum().eta()) > 1.2 && abs(simTrack.momentum().eta()) <= 2.4) {
195  computeResolution(fts, simTrack, hResolution_12_24);
197  computePull(fts, simTrack, hPull_12_24);
198 
199  if (simTrack.momentum().eta() > 0) {
202  computePull(fts, simTrack, hPull_12_24_plus);
203  } else {
206  computePull(fts, simTrack, hPull_12_24_minus);
207  }
208  }
209  }
210 }
211 
213  hReso->Fill(simTrack.momentum().mag(),
214  sqrt(simTrack.momentum().Perp2()),
215  simTrack.momentum().eta(),
216  simTrack.momentum().phi(),
217  resolution(fts.momentum().mag(), simTrack.momentum().mag()),
218  resolution(fts.momentum().perp(), sqrt(simTrack.momentum().Perp2())),
219  fts.momentum().eta() - simTrack.momentum().eta(),
220  fts.momentum().phi() - simTrack.momentum().phi(),
221  fts.charge() + simTrack.type() / abs(simTrack.type())); // FIXME
222 }
223 
225  int simCharge = -simTrack.type() / abs(simTrack.type());
226 
227  double invSimP = (simTrack.momentum().mag() == 0) ? 0 : simTrack.momentum().mag();
228  double signedInverseRecMom = (simTrack.momentum().mag() == 0) ? 0 : fts.signedInverseMomentum();
229 
230  hReso->Fill(simTrack.momentum().mag(),
231  sqrt(simTrack.momentum().Perp2()),
232  simTrack.momentum().eta(),
233  simTrack.momentum().phi(),
234  resolution(signedInverseRecMom, simCharge * invSimP),
235  resolution(fts.charge() / fts.momentum().perp(), simCharge / sqrt(simTrack.momentum().Perp2())));
236 }
237 
239  // x,y,z, px,py,pz
240  AlgebraicSymMatrix66 const errors = fts.cartesianError().matrix();
241 
242  double partialPterror = errors[3][3] * pow(fts.momentum().x(), 2) + errors[4][4] * pow(fts.momentum().y(), 2);
243 
244  // sqrt( (px*spx)^2 + (py*spy)^2 ) / pt
245  double pterror = sqrt(partialPterror) / fts.momentum().perp();
246 
247  // sqrt( (px*spx)^2 + (py*spy)^2 + (pz*spz)^2 ) / p
248  double perror = sqrt(partialPterror + errors[5][5] * pow(fts.momentum().z(), 2)) / fts.momentum().mag();
249 
250  double phierror = sqrt(fts.curvilinearError().matrix()[2][2]);
251 
252  double etaerror = sqrt(fts.curvilinearError().matrix()[1][1]) * abs(sin(fts.momentum().theta()));
253 
254  hReso->Fill(simTrack.momentum().mag(),
255  sqrt(simTrack.momentum().Perp2()),
256  simTrack.momentum().eta(),
257  simTrack.momentum().phi(),
258  pull(fts.momentum().mag(), simTrack.momentum().mag(), perror),
259  pull(fts.momentum().perp(), sqrt(simTrack.momentum().Perp2()), pterror),
260  pull(fts.momentum().eta(), simTrack.momentum().eta(), etaerror),
261  pull(fts.momentum().phi(), simTrack.momentum().phi(), phierror),
262  pull(fts.charge(), -simTrack.type() / abs(simTrack.type()), 1.)); // FIXME
263 }
HResolution * hPull_08_12
Definition: HTrack.h:78
double computeEfficiency(HTrackVariables *sim, DQMStore::IBooker &ibooker)
Definition: Histograms.h:89
void computeResolutionAndPull(TrajectoryStateOnSurface &vtx, SimTrack &simTrack)
Definition: HTrack.cc:117
HResolution * hResolution_12_21
Definition: HTrack.h:81
HResolution * hTDRResolution
Definition: HTrack.h:47
HResolution * hTDRResolution_12_24_plus
Definition: HTrack.h:97
CartesianTrajectoryError cartesianError() const
HResolution * hPull
Definition: HTrack.h:44
T perp() const
Definition: PV3DBase.h:69
HResolution * hResolution
Definition: HTrack.h:43
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
HResolution * hTDRResolution_12_24
Definition: HTrack.h:87
HResolution * hTDRResolution_40_70
Definition: HTrack.h:62
HResolution * hResolution_12_24_plus
Definition: HTrack.h:96
double resolution(double rec, double sim)
Definition: HTrack.cc:102
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
T y() const
Definition: PV3DBase.h:60
void computeTDRResolution(const FreeTrajectoryState &fts, SimTrack &simTracks, HResolution *hReso)
Definition: HTrack.cc:224
HResolution * hResolution_10_40
Definition: HTrack.h:56
HResolution * hPull_10_40
Definition: HTrack.h:58
HResolution * hResolution_12_24
Definition: HTrack.h:86
void computeResolution(const FreeTrajectoryState &fts, SimTrack &simTracks, HResolution *hReso)
Definition: HTrack.cc:212
TrackCharge charge() const
HResolution * hResolution_12_21_plus
Definition: HTrack.h:91
Definition: sim.h:19
const CurvilinearTrajectoryError & curvilinearError() const
HResolution * hTDRResolution_5_10
Definition: HTrack.h:52
HResolution * hResolution_12_24_minus
Definition: HTrack.h:106
Geom::Theta< T > theta() const
Definition: PV3DBase.h:72
HResolution * hResolution_5_10
Definition: HTrack.h:51
T mag() const
Definition: PV3DBase.h:64
HTrackVariables * hVariables
Definition: HTrack.h:40
HResolution * hTDRResolution_12_21_minus
Definition: HTrack.h:102
HResolution * hPull_12_21
Definition: HTrack.h:83
HResolution * hResolution_08_12
Definition: HTrack.h:76
T sqrt(T t)
Definition: SSEVec.h:19
HResolution * hTDRResolution_12_21
Definition: HTrack.h:82
FreeTrajectoryState const * freeState(bool withErrors=true) const
T z() const
Definition: PV3DBase.h:61
HResolution * hTDRResolution_12_24_minus
Definition: HTrack.h:107
Int_t Fill(Double_t x, Double_t y) override
Definition: Histograms.h:1830
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
HResolution * hResolution_40_70
Definition: HTrack.h:61
HResolution * hResolution_08
Definition: HTrack.h:71
HResolution * hPull_70_100
Definition: HTrack.h:68
void Fill(TrajectoryStateOnSurface &)
Definition: HTrack.cc:104
GlobalVector momentum() const
bool doSubHisto
Definition: HTrack.h:113
HResolution * hTDRPull
Definition: HTrack.h:48
HResolution * hPull_40_70
Definition: HTrack.h:63
const AlgebraicSymMatrix66 & matrix() const
ROOT::Math::SMatrix< double, 6, 6, ROOT::Math::MatRepSym< double, 6 > > AlgebraicSymMatrix66
HResolution * hTDRResolution_08_12
Definition: HTrack.h:77
HResolution * hPull_12_24_minus
Definition: HTrack.h:108
HResolution * hPull_12_21_minus
Definition: HTrack.h:103
void Fill(double p, double pt, double eta, double phi, double charge)
Definition: Histograms.h:72
HResolution * hPull_12_24
Definition: HTrack.h:88
double computeEfficiency(HTrackVariables *sim, DQMStore::IBooker &)
Definition: HTrack.cc:113
HResolution * hTDRResolution_70_100
Definition: HTrack.h:67
T eta() const
Definition: PV3DBase.h:73
HResolution * hTDRResolution_08
Definition: HTrack.h:72
int type() const
particle type (HEP PDT convension)
Definition: CoreSimTrack.h:22
HResolution * hPull_12_24_plus
Definition: HTrack.h:98
const AlgebraicSymMatrix55 & matrix() const
HTrack(DQMStore::IBooker &, std::string, std::string name, std::string whereIs="")
Definition: HTrack.cc:15
double pull(double rec, double sim, double sigmarec)
Definition: HTrack.cc:100
const math::XYZTLorentzVectorD & momentum() const
Definition: CoreSimTrack.h:19
HResolution * hResolution_70_100
Definition: HTrack.h:66
HResolution * hTDRResolution_10_40
Definition: HTrack.h:57
void FillDeltaR(double)
Definition: HTrack.cc:111
void computePull(const FreeTrajectoryState &fts, SimTrack &simTracks, HResolution *hReso)
Definition: HTrack.cc:238
HResolution * hPull_5_10
Definition: HTrack.h:53
T x() const
Definition: PV3DBase.h:59
double signedInverseMomentum() const
HResolution * hPull_08
Definition: HTrack.h:73
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29
void FillDeltaR(double deltaR)
Definition: Histograms.h:87
HResolution * hResolution_12_21_minus
Definition: HTrack.h:101
HResolution * hPull_12_21_plus
Definition: HTrack.h:93
HResolution * hTDRResolution_12_21_plus
Definition: HTrack.h:92