Fork me on GitHub

source: svn/trunk/modules/Merger.cc@ 1348

Last change on this file since 1348 was 1099, checked in by Pavel Demin, 11 years ago

define BTag and TauTag as UInt_t and use them as a set of bits

  • Property svn:keywords set to Id Revision Date
File size: 3.3 KB
Line 
1
2/** \class Merger
3 *
4 * Merges multiple input arrays into one output array
5 * and sums transverse momenta of all input objects.
6 *
7 * $Date: 2013-04-26 10:39:14 +0000 (Fri, 26 Apr 2013) $
8 * $Revision: 1099 $
9 *
10 *
11 * \author P. Demin - UCL, Louvain-la-Neuve
12 *
13 */
14
15#include "modules/Merger.h"
16
17#include "classes/DelphesClasses.h"
18#include "classes/DelphesFactory.h"
19#include "classes/DelphesFormula.h"
20
21#include "ExRootAnalysis/ExRootResult.h"
22#include "ExRootAnalysis/ExRootFilter.h"
23#include "ExRootAnalysis/ExRootClassifier.h"
24
25#include "TMath.h"
26#include "TString.h"
27#include "TFormula.h"
28#include "TRandom3.h"
29#include "TObjArray.h"
30#include "TDatabasePDG.h"
31#include "TLorentzVector.h"
32
33#include <algorithm>
34#include <stdexcept>
35#include <iostream>
36#include <sstream>
37
38using namespace std;
39
40//------------------------------------------------------------------------------
41
42Merger::Merger()
43{
44}
45
46//------------------------------------------------------------------------------
47
48Merger::~Merger()
49{
50}
51
52//------------------------------------------------------------------------------
53
54void Merger::Init()
55{
56 // import arrays with output from other modules
57
58 ExRootConfParam param = GetParam("InputArray");
59 Long_t i, size;
60 const TObjArray *array;
61 TIterator *iterator;
62
63 size = param.GetSize();
64 for(i = 0; i < size; ++i)
65 {
66 array = ImportArray(param[i].GetString());
67 iterator = array->MakeIterator();
68
69 fInputList.push_back(iterator);
70 }
71
72 // create output arrays
73
74 fOutputArray = ExportArray(GetString("OutputArray", "candidates"));
75
76 fMomentumOutputArray = ExportArray(GetString("MomentumOutputArray", "momentum"));
77
78 fEnergyOutputArray = ExportArray(GetString("EnergyOutputArray", "energy"));
79}
80
81//------------------------------------------------------------------------------
82
83void Merger::Finish()
84{
85 vector< TIterator * >::iterator itInputList;
86 TIterator *iterator;
87
88 for(itInputList = fInputList.begin(); itInputList != fInputList.end(); ++itInputList)
89 {
90 iterator = *itInputList;
91 if(iterator) delete iterator;
92 }
93}
94
95//------------------------------------------------------------------------------
96
97void Merger::Process()
98{
99 Candidate *candidate;
100 TLorentzVector momentum;
101 Double_t sumPT, sumE;
102 vector< TIterator * >::iterator itInputList;
103 TIterator *iterator;
104
105 DelphesFactory *factory = GetFactory();
106
107 momentum.SetPxPyPzE(0.0, 0.0, 0.0, 0.0);
108 sumPT = 0;
109 sumE = 0;
110
111 // loop over all input arrays
112 for(itInputList = fInputList.begin(); itInputList != fInputList.end(); ++itInputList)
113 {
114 iterator = *itInputList;
115
116 // loop over all candidates
117 iterator->Reset();
118 while((candidate = static_cast<Candidate*>(iterator->Next())))
119 {
120 const TLorentzVector &candidateMomentum = candidate->Momentum;
121
122 momentum += candidateMomentum;
123 sumPT += candidateMomentum.Pt();
124 sumE += candidateMomentum.E();
125
126 fOutputArray->Add(candidate);
127 }
128 }
129
130 candidate = factory->NewCandidate();
131
132 candidate->Position.SetXYZT(0.0, 0.0, 0.0, 0.0);
133 candidate->Momentum = momentum;
134
135 fMomentumOutputArray->Add(candidate);
136
137 candidate = factory->NewCandidate();
138
139 candidate->Position.SetXYZT(0.0, 0.0, 0.0, 0.0);
140 candidate->Momentum.SetPtEtaPhiE(sumPT, 0.0, 0.0, sumE);
141
142 fEnergyOutputArray->Add(candidate);
143}
144
145//------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.