Fork me on GitHub

source: git/modules/TreeWriter.cc@ 4d3fb73

ImprovedOutputFile Timing
Last change on this file since 4d3fb73 was 341014c, checked in by Pavel Demin <pavel-demin@…>, 5 years ago

apply .clang-format to all .h, .cc and .cpp files

  • Property mode set to 100644
File size: 23.9 KB
RevLine 
[b443089]1/*
2 * Delphes: a framework for fast simulation of a generic collider experiment
3 * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
[1fa50c2]4 *
[b443089]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.
[1fa50c2]9 *
[b443089]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.
[1fa50c2]14 *
[b443089]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
[d7d2da3]19/** \class TreeWriter
20 *
21 * Fills ROOT tree branches.
22 *
23 * \author P. Demin - UCL, Louvain-la-Neuve
24 *
25 */
26
27#include "modules/TreeWriter.h"
28
29#include "classes/DelphesClasses.h"
30#include "classes/DelphesFactory.h"
31#include "classes/DelphesFormula.h"
32
33#include "ExRootAnalysis/ExRootClassifier.h"
[341014c]34#include "ExRootAnalysis/ExRootFilter.h"
35#include "ExRootAnalysis/ExRootResult.h"
[d7d2da3]36#include "ExRootAnalysis/ExRootTreeBranch.h"
37
38#include "TDatabasePDG.h"
[341014c]39#include "TFormula.h"
[d7d2da3]40#include "TLorentzVector.h"
[341014c]41#include "TMath.h"
42#include "TObjArray.h"
43#include "TROOT.h"
44#include "TRandom3.h"
45#include "TString.h"
[d7d2da3]46
47#include <algorithm>
48#include <iostream>
49#include <sstream>
[341014c]50#include <stdexcept>
[d7d2da3]51
52using namespace std;
53
54//------------------------------------------------------------------------------
55
56TreeWriter::TreeWriter()
57{
58}
59
60//------------------------------------------------------------------------------
61
62TreeWriter::~TreeWriter()
63{
64}
65
66//------------------------------------------------------------------------------
67
68void TreeWriter::Init()
69{
70 fClassMap[GenParticle::Class()] = &TreeWriter::ProcessParticles;
[2de4dcd]71 fClassMap[Vertex::Class()] = &TreeWriter::ProcessVertices;
[d7d2da3]72 fClassMap[Track::Class()] = &TreeWriter::ProcessTracks;
73 fClassMap[Tower::Class()] = &TreeWriter::ProcessTowers;
74 fClassMap[Photon::Class()] = &TreeWriter::ProcessPhotons;
75 fClassMap[Electron::Class()] = &TreeWriter::ProcessElectrons;
76 fClassMap[Muon::Class()] = &TreeWriter::ProcessMuons;
77 fClassMap[Jet::Class()] = &TreeWriter::ProcessJets;
78 fClassMap[MissingET::Class()] = &TreeWriter::ProcessMissingET;
79 fClassMap[ScalarHT::Class()] = &TreeWriter::ProcessScalarHT;
[71648c2]80 fClassMap[Rho::Class()] = &TreeWriter::ProcessRho;
[2e229c9]81 fClassMap[Weight::Class()] = &TreeWriter::ProcessWeight;
[8f7db23]82 fClassMap[HectorHit::Class()] = &TreeWriter::ProcessHectorHit;
[d7d2da3]83
84 TBranchMap::iterator itBranchMap;
[341014c]85 map<TClass *, TProcessMethod>::iterator itClassMap;
[d7d2da3]86
87 // read branch configuration and
88 // import array with output from filter/classifier/jetfinder modules
89
90 ExRootConfParam param = GetParam("Branch");
91 Long_t i, size;
92 TString branchName, branchClassName, branchInputArray;
93 TClass *branchClass;
94 TObjArray *array;
95 ExRootTreeBranch *branch;
96
97 size = param.GetSize();
[341014c]98 for(i = 0; i < size / 3; ++i)
[d7d2da3]99 {
[341014c]100 branchInputArray = param[i * 3].GetString();
101 branchName = param[i * 3 + 1].GetString();
102 branchClassName = param[i * 3 + 2].GetString();
[d7d2da3]103
104 branchClass = gROOT->GetClass(branchClassName);
105
106 if(!branchClass)
107 {
108 cout << "** ERROR: cannot find class '" << branchClassName << "'" << endl;
109 continue;
110 }
[8f7db23]111
[d7d2da3]112 itClassMap = fClassMap.find(branchClass);
113 if(itClassMap == fClassMap.end())
114 {
115 cout << "** ERROR: cannot create branch for class '" << branchClassName << "'" << endl;
116 continue;
117 }
118
119 array = ImportArray(branchInputArray);
120 branch = NewBranch(branchName, branchClass);
121
122 fBranchMap.insert(make_pair(branch, make_pair(itClassMap->second, array)));
123 }
124}
125
126//------------------------------------------------------------------------------
127
128void TreeWriter::Finish()
129{
130}
131
132//------------------------------------------------------------------------------
133
134void TreeWriter::FillParticles(Candidate *candidate, TRefArray *array)
135{
136 TIter it1(candidate->GetCandidates());
137 it1.Reset();
138 array->Clear();
[341014c]139 while((candidate = static_cast<Candidate *>(it1.Next())))
[d7d2da3]140 {
141 TIter it2(candidate->GetCandidates());
142
143 // particle
144 if(candidate->GetCandidates()->GetEntriesFast() == 0)
145 {
146 array->Add(candidate);
147 continue;
148 }
149
150 // track
[341014c]151 candidate = static_cast<Candidate *>(candidate->GetCandidates()->At(0));
[d7d2da3]152 if(candidate->GetCandidates()->GetEntriesFast() == 0)
153 {
154 array->Add(candidate);
155 continue;
156 }
157
158 // tower
159 it2.Reset();
[341014c]160 while((candidate = static_cast<Candidate *>(it2.Next())))
[d7d2da3]161 {
162 array->Add(candidate->GetCandidates()->At(0));
163 }
164 }
165}
166
167//------------------------------------------------------------------------------
168
169void TreeWriter::ProcessParticles(ExRootTreeBranch *branch, TObjArray *array)
170{
171 TIter iterator(array);
172 Candidate *candidate = 0;
173 GenParticle *entry = 0;
174 Double_t pt, signPz, cosTheta, eta, rapidity;
[8f7db23]175
[22dc7fd]176 const Double_t c_light = 2.99792458E8;
[8f7db23]177
[d7d2da3]178 // loop over all particles
179 iterator.Reset();
[341014c]180 while((candidate = static_cast<Candidate *>(iterator.Next())))
[d7d2da3]181 {
182 const TLorentzVector &momentum = candidate->Momentum;
183 const TLorentzVector &position = candidate->Position;
184
[341014c]185 entry = static_cast<GenParticle *>(branch->NewEntry());
[d7d2da3]186
187 entry->SetBit(kIsReferenced);
188 entry->SetUniqueID(candidate->GetUniqueID());
189
190 pt = momentum.Pt();
191 cosTheta = TMath::Abs(momentum.CosTheta());
192 signPz = (momentum.Pz() >= 0.0) ? 1.0 : -1.0;
[341014c]193 eta = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Eta());
194 rapidity = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Rapidity());
[d7d2da3]195
196 entry->PID = candidate->PID;
197
198 entry->Status = candidate->Status;
199 entry->IsPU = candidate->IsPU;
200
201 entry->M1 = candidate->M1;
202 entry->M2 = candidate->M2;
203
204 entry->D1 = candidate->D1;
205 entry->D2 = candidate->D2;
206
207 entry->Charge = candidate->Charge;
208 entry->Mass = candidate->Mass;
209
210 entry->E = momentum.E();
211 entry->Px = momentum.Px();
212 entry->Py = momentum.Py();
213 entry->Pz = momentum.Pz();
214
[341014c]215 entry->D0 = candidate->D0;
216 entry->DZ = candidate->DZ;
217 entry->P = candidate->P;
218 entry->PT = candidate->PT;
219 entry->CtgTheta = candidate->CtgTheta;
220 entry->Phi = candidate->Phi;
[acd0621]221
[d7d2da3]222 entry->Eta = eta;
223 entry->Phi = momentum.Phi();
224 entry->PT = pt;
225
226 entry->Rapidity = rapidity;
227
228 entry->X = position.X();
229 entry->Y = position.Y();
230 entry->Z = position.Z();
[341014c]231 entry->T = position.T() * 1.0E-3 / c_light;
[d7d2da3]232 }
233}
234
235//------------------------------------------------------------------------------
236
[d07e957]237void TreeWriter::ProcessVertices(ExRootTreeBranch *branch, TObjArray *array)
238{
239 TIter iterator(array);
[5496767]240 Candidate *candidate = 0, *constituent = 0;
[d07e957]241 Vertex *entry = 0;
[8f7db23]242
[22dc7fd]243 const Double_t c_light = 2.99792458E8;
[5496767]244
[332025f]245 Double_t x, y, z, t, xError, yError, zError, tError, sigma, sumPT2, btvSumPT2, genDeltaZ, genSumPT2;
[2600216]246 UInt_t index, ndf;
[5496767]247
[3e2bb2b]248 CompBase *compare = Candidate::fgCompare;
249 Candidate::fgCompare = CompSumPT2<Candidate>::Instance();
[3c46e17]250 array->Sort();
[3e2bb2b]251 Candidate::fgCompare = compare;
[5496767]252
[d07e957]253 // loop over all vertices
254 iterator.Reset();
[341014c]255 while((candidate = static_cast<Candidate *>(iterator.Next())))
[d07e957]256 {
[5496767]257
[2600216]258 index = candidate->ClusterIndex;
259 ndf = candidate->ClusterNDF;
260 sigma = candidate->ClusterSigma;
261 sumPT2 = candidate->SumPT2;
262 btvSumPT2 = candidate->BTVSumPT2;
263 genDeltaZ = candidate->GenDeltaZ;
264 genSumPT2 = candidate->GenSumPT2;
[5496767]265
[7bcca65]266 x = candidate->Position.X();
267 y = candidate->Position.Y();
268 z = candidate->Position.Z();
[341014c]269 t = candidate->Position.T() * 1.0E-3 / c_light;
[5496767]270
[341014c]271 xError = candidate->PositionError.X();
272 yError = candidate->PositionError.Y();
273 zError = candidate->PositionError.Z();
274 tError = candidate->PositionError.T() * 1.0E-3 / c_light;
[d07e957]275
[341014c]276 entry = static_cast<Vertex *>(branch->NewEntry());
[d07e957]277
[2600216]278 entry->Index = index;
279 entry->NDF = ndf;
280 entry->Sigma = sigma;
281 entry->SumPT2 = sumPT2;
282 entry->BTVSumPT2 = btvSumPT2;
283 entry->GenDeltaZ = genDeltaZ;
284 entry->GenSumPT2 = genSumPT2;
[5496767]285
[2600216]286 entry->X = x;
287 entry->Y = y;
288 entry->Z = z;
289 entry->T = t;
[5496767]290
[2600216]291 entry->ErrorX = xError;
292 entry->ErrorY = yError;
293 entry->ErrorZ = zError;
[332025f]294 entry->ErrorT = tError;
[5496767]295
[3e2bb2b]296 TIter itConstituents(candidate->GetCandidates());
297 itConstituents.Reset();
298 entry->Constituents.Clear();
[341014c]299 while((constituent = static_cast<Candidate *>(itConstituents.Next())))
[5496767]300 {
301 entry->Constituents.Add(constituent);
302 }
[d07e957]303 }
304}
305
306//------------------------------------------------------------------------------
307
[d7d2da3]308void TreeWriter::ProcessTracks(ExRootTreeBranch *branch, TObjArray *array)
309{
310 TIter iterator(array);
311 Candidate *candidate = 0;
312 Candidate *particle = 0;
313 Track *entry = 0;
[2a3eb22]314 Double_t pt, signz, cosTheta, eta, rapidity, p, ctgTheta, phi;
[22dc7fd]315 const Double_t c_light = 2.99792458E8;
[8f7db23]316
[d07e957]317 // loop over all tracks
[d7d2da3]318 iterator.Reset();
[341014c]319 while((candidate = static_cast<Candidate *>(iterator.Next())))
[d7d2da3]320 {
321 const TLorentzVector &position = candidate->Position;
322
323 cosTheta = TMath::Abs(position.CosTheta());
324 signz = (position.Pz() >= 0.0) ? 1.0 : -1.0;
[341014c]325 eta = (cosTheta == 1.0 ? signz * 999.9 : position.Eta());
326 rapidity = (cosTheta == 1.0 ? signz * 999.9 : position.Rapidity());
[d7d2da3]327
[341014c]328 entry = static_cast<Track *>(branch->NewEntry());
[d7d2da3]329
330 entry->SetBit(kIsReferenced);
331 entry->SetUniqueID(candidate->GetUniqueID());
332
333 entry->PID = candidate->PID;
334
335 entry->Charge = candidate->Charge;
336
337 entry->EtaOuter = eta;
338 entry->PhiOuter = position.Phi();
339
340 entry->XOuter = position.X();
341 entry->YOuter = position.Y();
342 entry->ZOuter = position.Z();
[341014c]343 entry->TOuter = position.T() * 1.0E-3 / c_light;
[5496767]344
[acd0621]345 entry->L = candidate->L;
[5496767]346
[341014c]347 entry->D0 = candidate->D0;
348 entry->ErrorD0 = candidate->ErrorD0;
349 entry->DZ = candidate->DZ;
350 entry->ErrorDZ = candidate->ErrorDZ;
[2a3eb22]351
[341014c]352 entry->ErrorP = candidate->ErrorP;
353 entry->ErrorPT = candidate->ErrorPT;
[acd0621]354 entry->ErrorCtgTheta = candidate->ErrorCtgTheta;
[341014c]355 entry->ErrorPhi = candidate->ErrorPhi;
[5496767]356
[e4c3fef]357 entry->Xd = candidate->Xd;
358 entry->Yd = candidate->Yd;
359 entry->Zd = candidate->Zd;
[9040259]360
[d7d2da3]361 const TLorentzVector &momentum = candidate->Momentum;
362
363 pt = momentum.Pt();
[2a3eb22]364 p = momentum.P();
365 phi = momentum.Phi();
[341014c]366 ctgTheta = (TMath::Tan(momentum.Theta()) != 0) ? 1 / TMath::Tan(momentum.Theta()) : 1e10;
[2a3eb22]367
[d7d2da3]368 cosTheta = TMath::Abs(momentum.CosTheta());
369 signz = (momentum.Pz() >= 0.0) ? 1.0 : -1.0;
[341014c]370 eta = (cosTheta == 1.0 ? signz * 999.9 : momentum.Eta());
371 rapidity = (cosTheta == 1.0 ? signz * 999.9 : momentum.Rapidity());
[d7d2da3]372
[c1ea422]373 entry->P = p;
[341014c]374 entry->PT = pt;
[d7d2da3]375 entry->Eta = eta;
[2a3eb22]376 entry->Phi = phi;
377 entry->CtgTheta = ctgTheta;
[5496767]378
[341014c]379 particle = static_cast<Candidate *>(candidate->GetCandidates()->At(0));
[d7d2da3]380 const TLorentzVector &initialPosition = particle->Position;
381
382 entry->X = initialPosition.X();
383 entry->Y = initialPosition.Y();
384 entry->Z = initialPosition.Z();
[341014c]385 entry->T = initialPosition.T() * 1.0E-3 / c_light;
[d7d2da3]386
387 entry->Particle = particle;
[2600216]388
389 entry->VertexIndex = candidate->ClusterIndex;
[d7d2da3]390 }
391}
392
393//------------------------------------------------------------------------------
394
395void TreeWriter::ProcessTowers(ExRootTreeBranch *branch, TObjArray *array)
396{
397 TIter iterator(array);
398 Candidate *candidate = 0;
399 Tower *entry = 0;
400 Double_t pt, signPz, cosTheta, eta, rapidity;
[22dc7fd]401 const Double_t c_light = 2.99792458E8;
[8f7db23]402
[d07e957]403 // loop over all towers
[d7d2da3]404 iterator.Reset();
[341014c]405 while((candidate = static_cast<Candidate *>(iterator.Next())))
[d7d2da3]406 {
407 const TLorentzVector &momentum = candidate->Momentum;
[22dc7fd]408 const TLorentzVector &position = candidate->Position;
[8f7db23]409
[d7d2da3]410 pt = momentum.Pt();
411 cosTheta = TMath::Abs(momentum.CosTheta());
412 signPz = (momentum.Pz() >= 0.0) ? 1.0 : -1.0;
[341014c]413 eta = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Eta());
414 rapidity = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Rapidity());
[d7d2da3]415
[341014c]416 entry = static_cast<Tower *>(branch->NewEntry());
[d7d2da3]417
418 entry->SetBit(kIsReferenced);
419 entry->SetUniqueID(candidate->GetUniqueID());
420
421 entry->Eta = eta;
422 entry->Phi = momentum.Phi();
423 entry->ET = pt;
424 entry->E = momentum.E();
425 entry->Eem = candidate->Eem;
426 entry->Ehad = candidate->Ehad;
427 entry->Edges[0] = candidate->Edges[0];
428 entry->Edges[1] = candidate->Edges[1];
429 entry->Edges[2] = candidate->Edges[2];
430 entry->Edges[3] = candidate->Edges[3];
[8f7db23]431
[341014c]432 entry->T = position.T() * 1.0E-3 / c_light;
[839deb7]433 entry->NTimeHits = candidate->NTimeHits;
[8f7db23]434
[d7d2da3]435 FillParticles(candidate, &entry->Particles);
436 }
437}
438
439//------------------------------------------------------------------------------
440
441void TreeWriter::ProcessPhotons(ExRootTreeBranch *branch, TObjArray *array)
442{
443 TIter iterator(array);
444 Candidate *candidate = 0;
445 Photon *entry = 0;
446 Double_t pt, signPz, cosTheta, eta, rapidity;
[22dc7fd]447 const Double_t c_light = 2.99792458E8;
[8f7db23]448
[d7d2da3]449 array->Sort();
450
451 // loop over all photons
452 iterator.Reset();
[341014c]453 while((candidate = static_cast<Candidate *>(iterator.Next())))
[d7d2da3]454 {
455 TIter it1(candidate->GetCandidates());
456 const TLorentzVector &momentum = candidate->Momentum;
[22dc7fd]457 const TLorentzVector &position = candidate->Position;
[8f7db23]458
[d7d2da3]459 pt = momentum.Pt();
460 cosTheta = TMath::Abs(momentum.CosTheta());
461 signPz = (momentum.Pz() >= 0.0) ? 1.0 : -1.0;
[341014c]462 eta = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Eta());
463 rapidity = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Rapidity());
[d7d2da3]464
[341014c]465 entry = static_cast<Photon *>(branch->NewEntry());
[d7d2da3]466
467 entry->Eta = eta;
468 entry->Phi = momentum.Phi();
469 entry->PT = pt;
470 entry->E = momentum.E();
[341014c]471 entry->T = position.T() * 1.0E-3 / c_light;
[8f7db23]472
[d5cae2b]473 // Isolation variables
[9040259]474
[d5cae2b]475 entry->IsolationVar = candidate->IsolationVar;
[341014c]476 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr;
477 entry->SumPtCharged = candidate->SumPtCharged;
478 entry->SumPtNeutral = candidate->SumPtNeutral;
479 entry->SumPtChargedPU = candidate->SumPtChargedPU;
480 entry->SumPt = candidate->SumPt;
[d5cae2b]481
[341014c]482 entry->EhadOverEem = candidate->Eem > 0.0 ? candidate->Ehad / candidate->Eem : 999.9;
[d7d2da3]483
[0e0f211]484 // 1: prompt -- 2: non prompt -- 3: fake
485 entry->Status = candidate->Status;
486
[d7d2da3]487 FillParticles(candidate, &entry->Particles);
488 }
489}
490
491//------------------------------------------------------------------------------
492
493void TreeWriter::ProcessElectrons(ExRootTreeBranch *branch, TObjArray *array)
494{
495 TIter iterator(array);
496 Candidate *candidate = 0;
497 Electron *entry = 0;
498 Double_t pt, signPz, cosTheta, eta, rapidity;
[22dc7fd]499 const Double_t c_light = 2.99792458E8;
[8f7db23]500
[d7d2da3]501 array->Sort();
502
503 // loop over all electrons
504 iterator.Reset();
[341014c]505 while((candidate = static_cast<Candidate *>(iterator.Next())))
[d7d2da3]506 {
507 const TLorentzVector &momentum = candidate->Momentum;
[22dc7fd]508 const TLorentzVector &position = candidate->Position;
[8f7db23]509
[d7d2da3]510 pt = momentum.Pt();
511 cosTheta = TMath::Abs(momentum.CosTheta());
512 signPz = (momentum.Pz() >= 0.0) ? 1.0 : -1.0;
[341014c]513 eta = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Eta());
514 rapidity = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Rapidity());
[d7d2da3]515
[341014c]516 entry = static_cast<Electron *>(branch->NewEntry());
[d7d2da3]517
518 entry->Eta = eta;
519 entry->Phi = momentum.Phi();
520 entry->PT = pt;
[8f7db23]521
[341014c]522 entry->T = position.T() * 1.0E-3 / c_light;
[8f7db23]523
[0518688]524 // displacement
[341014c]525 entry->D0 = candidate->D0;
526 entry->ErrorD0 = candidate->ErrorD0;
527 entry->DZ = candidate->DZ;
528 entry->ErrorDZ = candidate->ErrorDZ;
[9040259]529
[0518688]530 // Isolation variables
[d5cae2b]531 entry->IsolationVar = candidate->IsolationVar;
[341014c]532 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr;
533 entry->SumPtCharged = candidate->SumPtCharged;
534 entry->SumPtNeutral = candidate->SumPtNeutral;
535 entry->SumPtChargedPU = candidate->SumPtChargedPU;
536 entry->SumPt = candidate->SumPt;
[d5cae2b]537
[d7d2da3]538 entry->Charge = candidate->Charge;
539
540 entry->EhadOverEem = 0.0;
541
542 entry->Particle = candidate->GetCandidates()->At(0);
543 }
544}
545
546//------------------------------------------------------------------------------
547
548void TreeWriter::ProcessMuons(ExRootTreeBranch *branch, TObjArray *array)
549{
550 TIter iterator(array);
551 Candidate *candidate = 0;
552 Muon *entry = 0;
553 Double_t pt, signPz, cosTheta, eta, rapidity;
[8f7db23]554
[22dc7fd]555 const Double_t c_light = 2.99792458E8;
[8f7db23]556
[d7d2da3]557 array->Sort();
558
559 // loop over all muons
560 iterator.Reset();
[341014c]561 while((candidate = static_cast<Candidate *>(iterator.Next())))
[d7d2da3]562 {
563 const TLorentzVector &momentum = candidate->Momentum;
[22dc7fd]564 const TLorentzVector &position = candidate->Position;
[8f7db23]565
[d7d2da3]566 pt = momentum.Pt();
567 cosTheta = TMath::Abs(momentum.CosTheta());
568 signPz = (momentum.Pz() >= 0.0) ? 1.0 : -1.0;
[341014c]569 eta = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Eta());
570 rapidity = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Rapidity());
[d7d2da3]571
[341014c]572 entry = static_cast<Muon *>(branch->NewEntry());
[d7d2da3]573
574 entry->SetBit(kIsReferenced);
575 entry->SetUniqueID(candidate->GetUniqueID());
576
577 entry->Eta = eta;
578 entry->Phi = momentum.Phi();
579 entry->PT = pt;
580
[341014c]581 entry->T = position.T() * 1.0E-3 / c_light;
[0518688]582
583 // displacement
[341014c]584 entry->D0 = candidate->D0;
585 entry->ErrorD0 = candidate->ErrorD0;
586 entry->DZ = candidate->DZ;
587 entry->ErrorDZ = candidate->ErrorDZ;
[0518688]588
[d5cae2b]589 // Isolation variables
[9040259]590
[d5cae2b]591 entry->IsolationVar = candidate->IsolationVar;
[341014c]592 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr;
593 entry->SumPtCharged = candidate->SumPtCharged;
594 entry->SumPtNeutral = candidate->SumPtNeutral;
595 entry->SumPtChargedPU = candidate->SumPtChargedPU;
596 entry->SumPt = candidate->SumPt;
[8f7db23]597
[d7d2da3]598 entry->Charge = candidate->Charge;
599
600 entry->Particle = candidate->GetCandidates()->At(0);
601 }
602}
603
604//------------------------------------------------------------------------------
605
606void TreeWriter::ProcessJets(ExRootTreeBranch *branch, TObjArray *array)
607{
608 TIter iterator(array);
609 Candidate *candidate = 0, *constituent = 0;
610 Jet *entry = 0;
611 Double_t pt, signPz, cosTheta, eta, rapidity;
612 Double_t ecalEnergy, hcalEnergy;
[22dc7fd]613 const Double_t c_light = 2.99792458E8;
[de6d698]614 Int_t i;
[8f7db23]615
[d7d2da3]616 array->Sort();
617
618 // loop over all jets
619 iterator.Reset();
[341014c]620 while((candidate = static_cast<Candidate *>(iterator.Next())))
[d7d2da3]621 {
622 TIter itConstituents(candidate->GetCandidates());
[8f7db23]623
[d7d2da3]624 const TLorentzVector &momentum = candidate->Momentum;
[22dc7fd]625 const TLorentzVector &position = candidate->Position;
[8f7db23]626
[d7d2da3]627 pt = momentum.Pt();
628 cosTheta = TMath::Abs(momentum.CosTheta());
629 signPz = (momentum.Pz() >= 0.0) ? 1.0 : -1.0;
[341014c]630 eta = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Eta());
631 rapidity = (cosTheta == 1.0 ? signPz * 999.9 : momentum.Rapidity());
[d7d2da3]632
[341014c]633 entry = static_cast<Jet *>(branch->NewEntry());
[d7d2da3]634
635 entry->Eta = eta;
636 entry->Phi = momentum.Phi();
637 entry->PT = pt;
638
[341014c]639 entry->T = position.T() * 1.0E-3 / c_light;
[8f7db23]640
[d7d2da3]641 entry->Mass = momentum.M();
642
[ba1f1ee]643 entry->Area = candidate->Area;
644
[d7d2da3]645 entry->DeltaEta = candidate->DeltaEta;
646 entry->DeltaPhi = candidate->DeltaPhi;
647
[fe0273c]648 entry->Flavor = candidate->Flavor;
649 entry->FlavorAlgo = candidate->FlavorAlgo;
650 entry->FlavorPhys = candidate->FlavorPhys;
651
[d7d2da3]652 entry->BTag = candidate->BTag;
[9040259]653
654 entry->BTagAlgo = candidate->BTagAlgo;
[fe0273c]655 entry->BTagPhys = candidate->BTagPhys;
[9040259]656
[d7d2da3]657 entry->TauTag = candidate->TauTag;
[7429c6a]658 entry->TauWeight = candidate->TauWeight;
[d7d2da3]659
660 entry->Charge = candidate->Charge;
661
662 itConstituents.Reset();
663 entry->Constituents.Clear();
664 ecalEnergy = 0.0;
665 hcalEnergy = 0.0;
[341014c]666 while((constituent = static_cast<Candidate *>(itConstituents.Next())))
[d7d2da3]667 {
668 entry->Constituents.Add(constituent);
669 ecalEnergy += constituent->Eem;
670 hcalEnergy += constituent->Ehad;
671 }
672
[341014c]673 entry->EhadOverEem = ecalEnergy > 0.0 ? hcalEnergy / ecalEnergy : 999.9;
[8f7db23]674
[24d005f]675 //--- Pile-Up Jet ID variables ----
676
677 entry->NCharged = candidate->NCharged;
678 entry->NNeutrals = candidate->NNeutrals;
679 entry->Beta = candidate->Beta;
680 entry->BetaStar = candidate->BetaStar;
681 entry->MeanSqDeltaR = candidate->MeanSqDeltaR;
682 entry->PTD = candidate->PTD;
[9040259]683
[de6d698]684 //--- Sub-structure variables ----
[9040259]685
686 entry->NSubJetsTrimmed = candidate->NSubJetsTrimmed;
687 entry->NSubJetsPruned = candidate->NSubJetsPruned;
[de6d698]688 entry->NSubJetsSoftDropped = candidate->NSubJetsSoftDropped;
[9040259]689
[341014c]690 entry->SoftDroppedJet = candidate->SoftDroppedJet;
691 entry->SoftDroppedSubJet1 = candidate->SoftDroppedSubJet1;
[ba75867]692 entry->SoftDroppedSubJet2 = candidate->SoftDroppedSubJet2;
693
[de6d698]694 for(i = 0; i < 5; i++)
695 {
[341014c]696 entry->FracPt[i] = candidate->FracPt[i];
697 entry->Tau[i] = candidate->Tau[i];
698 entry->TrimmedP4[i] = candidate->TrimmedP4[i];
699 entry->PrunedP4[i] = candidate->PrunedP4[i];
700 entry->SoftDroppedP4[i] = candidate->SoftDroppedP4[i];
[de6d698]701 }
[9040259]702
[e9c0d73]703 //--- exclusive clustering variables ---
704 entry->ExclYmerge23 = candidate->ExclYmerge23;
705 entry->ExclYmerge34 = candidate->ExclYmerge34;
706 entry->ExclYmerge45 = candidate->ExclYmerge45;
[341014c]707 entry->ExclYmerge56 = candidate->ExclYmerge56;
[e9c0d73]708
[d7d2da3]709 FillParticles(candidate, &entry->Particles);
710 }
711}
712
713//------------------------------------------------------------------------------
714
715void TreeWriter::ProcessMissingET(ExRootTreeBranch *branch, TObjArray *array)
716{
717 Candidate *candidate = 0;
718 MissingET *entry = 0;
719
720 // get the first entry
[341014c]721 if((candidate = static_cast<Candidate *>(array->At(0))))
[d7d2da3]722 {
723 const TLorentzVector &momentum = candidate->Momentum;
724
[341014c]725 entry = static_cast<MissingET *>(branch->NewEntry());
[d7d2da3]726
[3b465ca]727 entry->Eta = (-momentum).Eta();
[d7d2da3]728 entry->Phi = (-momentum).Phi();
729 entry->MET = momentum.Pt();
730 }
731}
732
733//------------------------------------------------------------------------------
734
735void TreeWriter::ProcessScalarHT(ExRootTreeBranch *branch, TObjArray *array)
736{
737 Candidate *candidate = 0;
738 ScalarHT *entry = 0;
739
740 // get the first entry
[341014c]741 if((candidate = static_cast<Candidate *>(array->At(0))))
[d7d2da3]742 {
743 const TLorentzVector &momentum = candidate->Momentum;
744
[341014c]745 entry = static_cast<ScalarHT *>(branch->NewEntry());
[d7d2da3]746
747 entry->HT = momentum.Pt();
748 }
749}
750
751//------------------------------------------------------------------------------
752
[71648c2]753void TreeWriter::ProcessRho(ExRootTreeBranch *branch, TObjArray *array)
754{
[3b465ca]755 TIter iterator(array);
[71648c2]756 Candidate *candidate = 0;
757 Rho *entry = 0;
758
[3b465ca]759 // loop over all rho
760 iterator.Reset();
[341014c]761 while((candidate = static_cast<Candidate *>(iterator.Next())))
[71648c2]762 {
763 const TLorentzVector &momentum = candidate->Momentum;
764
[341014c]765 entry = static_cast<Rho *>(branch->NewEntry());
[71648c2]766
[8608ef8]767 entry->Rho = momentum.E();
[3b465ca]768 entry->Edges[0] = candidate->Edges[0];
769 entry->Edges[1] = candidate->Edges[1];
[71648c2]770 }
771}
772
773//------------------------------------------------------------------------------
774
[2e229c9]775void TreeWriter::ProcessWeight(ExRootTreeBranch *branch, TObjArray *array)
776{
777 Candidate *candidate = 0;
778 Weight *entry = 0;
779
780 // get the first entry
[341014c]781 if((candidate = static_cast<Candidate *>(array->At(0))))
[2e229c9]782 {
783 const TLorentzVector &momentum = candidate->Momentum;
784
[341014c]785 entry = static_cast<Weight *>(branch->NewEntry());
[2e229c9]786
787 entry->Weight = momentum.E();
788 }
789}
790
791//------------------------------------------------------------------------------
792
[8f7db23]793void TreeWriter::ProcessHectorHit(ExRootTreeBranch *branch, TObjArray *array)
794{
795 TIter iterator(array);
796 Candidate *candidate = 0;
797 HectorHit *entry = 0;
798
799 // loop over all roman pot hits
800 iterator.Reset();
[341014c]801 while((candidate = static_cast<Candidate *>(iterator.Next())))
[8f7db23]802 {
803 const TLorentzVector &position = candidate->Position;
804 const TLorentzVector &momentum = candidate->Momentum;
805
[341014c]806 entry = static_cast<HectorHit *>(branch->NewEntry());
[8f7db23]807
808 entry->E = momentum.E();
809
810 entry->Tx = momentum.Px();
811 entry->Ty = momentum.Py();
812
813 entry->T = position.T();
814
815 entry->X = position.X();
816 entry->Y = position.Y();
817 entry->S = position.Z();
[64a4950]818
819 entry->Particle = candidate->GetCandidates()->At(0);
[8f7db23]820 }
821}
822
823//------------------------------------------------------------------------------
824
[d7d2da3]825void TreeWriter::Process()
826{
827 TBranchMap::iterator itBranchMap;
828 ExRootTreeBranch *branch;
829 TProcessMethod method;
830 TObjArray *array;
831
832 for(itBranchMap = fBranchMap.begin(); itBranchMap != fBranchMap.end(); ++itBranchMap)
833 {
834 branch = itBranchMap->first;
835 method = itBranchMap->second.first;
836 array = itBranchMap->second.second;
837
838 (this->*method)(branch, array);
839 }
840}
841
842//------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.