Fork me on GitHub

source: git/modules/UniqueObjectFinder.cc@ 2eb25b1

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 2eb25b1 was b443089, checked in by Pavel Demin <pavel.demin@…>, 10 years ago

fix EOL characters in GPLv3 header

  • Property mode set to 100644
File size: 4.1 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 UniqueObjectFinder
21 *
22 * Finds uniquely identified photons, electrons and jets.
23 *
24 * $Date$
25 * $Revision$
26 *
27 *
28 * \author P. Demin - UCL, Louvain-la-Neuve
29 *
30 */
31
32#include "modules/UniqueObjectFinder.h"
33
34#include "classes/DelphesClasses.h"
35#include "classes/DelphesFactory.h"
36#include "classes/DelphesFormula.h"
37
38#include "ExRootAnalysis/ExRootResult.h"
39#include "ExRootAnalysis/ExRootFilter.h"
40#include "ExRootAnalysis/ExRootClassifier.h"
41
42#include "TMath.h"
43#include "TString.h"
44#include "TFormula.h"
45#include "TRandom3.h"
46#include "TObjArray.h"
47#include "TDatabasePDG.h"
48#include "TLorentzVector.h"
49
50#include <algorithm>
51#include <stdexcept>
52#include <iostream>
53#include <sstream>
54
55using namespace std;
56
57//------------------------------------------------------------------------------
58
59UniqueObjectFinder::UniqueObjectFinder()
60{
61}
62
63//------------------------------------------------------------------------------
64
65UniqueObjectFinder::~UniqueObjectFinder()
66{
67}
68
69//------------------------------------------------------------------------------
70
71void UniqueObjectFinder::Init()
72{
73 // import arrays with output from other modules
74
75 ExRootConfParam param = GetParam("InputArray");
76 Long_t i, size;
77 const TObjArray *array;
78 TIterator *iterator;
79
80 size = param.GetSize();
81 for(i = 0; i < size/2; ++i)
82 {
83 array = ImportArray(param[i*2].GetString());
84 iterator = array->MakeIterator();
85
86 fInputMap[iterator] = ExportArray(param[i*2 + 1].GetString());
87 }
88}
89
90//------------------------------------------------------------------------------
91
92void UniqueObjectFinder::Finish()
93{
94 map< TIterator *, TObjArray * >::iterator itInputMap;
95 TIterator *iterator;
96
97 for(itInputMap = fInputMap.begin(); itInputMap != fInputMap.end(); ++itInputMap)
98 {
99 iterator = itInputMap->first;
100
101 if(iterator) delete iterator;
102 }
103}
104
105//------------------------------------------------------------------------------
106
107void UniqueObjectFinder::Process()
108{
109 Candidate *candidate;
110 map< TIterator *, TObjArray * >::iterator itInputMap;
111 TIterator *iterator;
112 TObjArray *array;
113
114 // loop over all input arrays
115 for(itInputMap = fInputMap.begin(); itInputMap != fInputMap.end(); ++itInputMap)
116 {
117 iterator = itInputMap->first;
118 array = itInputMap->second;
119
120 // loop over all candidates
121 iterator->Reset();
122 while((candidate = static_cast<Candidate*>(iterator->Next())))
123 {
124 if(Unique(candidate, itInputMap))
125 {
126 array->Add(candidate);
127 }
128 }
129 }
130}
131
132//------------------------------------------------------------------------------
133
134Bool_t UniqueObjectFinder::Unique(Candidate *candidate, map< TIterator *, TObjArray * >::iterator itInputMap)
135{
136 Candidate *previousCandidate;
137 map< TIterator *, TObjArray * >::iterator previousItInputMap;
138 TObjArray *array;
139
140 // loop over previous arrays
141 for(previousItInputMap = fInputMap.begin(); previousItInputMap != itInputMap; ++previousItInputMap)
142 {
143 array = previousItInputMap->second;
144 TIter iterator(array);
145
146 // loop over all candidates
147 iterator.Reset();
148 while((previousCandidate = static_cast<Candidate*>(iterator.Next())))
149 {
150 if(candidate->Overlaps(previousCandidate))
151 {
152 return kFALSE;
153 }
154 }
155 }
156
157 return kTRUE;
158}
159
160//------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.