Fork me on GitHub

source: git/modules/TreeWriter.cc@ e576ef60

ImprovedOutputFile Timing dual_readout llp
Last change on this file since e576ef60 was 2a3eb22, checked in by Michele Selvaggi <michele.selvaggi@…>, 8 years ago

fix track momentum in TreeWriter

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