[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 UniqueObjectFinder
|
---|
| 20 | *
|
---|
| 21 | * Finds uniquely identified photons, electrons and jets.
|
---|
| 22 | *
|
---|
| 23 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 24 | *
|
---|
| 25 | */
|
---|
| 26 |
|
---|
| 27 | #include "modules/UniqueObjectFinder.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 |
|
---|
| 37 | #include "TDatabasePDG.h"
|
---|
[341014c] | 38 | #include "TFormula.h"
|
---|
[d7d2da3] | 39 | #include "TLorentzVector.h"
|
---|
[341014c] | 40 | #include "TMath.h"
|
---|
| 41 | #include "TObjArray.h"
|
---|
| 42 | #include "TRandom3.h"
|
---|
| 43 | #include "TString.h"
|
---|
[d7d2da3] | 44 |
|
---|
[341014c] | 45 | #include <algorithm>
|
---|
[d7d2da3] | 46 | #include <iostream>
|
---|
| 47 | #include <sstream>
|
---|
[341014c] | 48 | #include <stdexcept>
|
---|
[d7d2da3] | 49 |
|
---|
| 50 | using namespace std;
|
---|
| 51 |
|
---|
| 52 | //------------------------------------------------------------------------------
|
---|
| 53 |
|
---|
| 54 | UniqueObjectFinder::UniqueObjectFinder()
|
---|
| 55 | {
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | //------------------------------------------------------------------------------
|
---|
| 59 |
|
---|
| 60 | UniqueObjectFinder::~UniqueObjectFinder()
|
---|
| 61 | {
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | //------------------------------------------------------------------------------
|
---|
| 65 |
|
---|
| 66 | void UniqueObjectFinder::Init()
|
---|
| 67 | {
|
---|
[70bb4cb] | 68 | // use GetUniqueID algorithm to find unique objects (faster than the default Overlaps method)
|
---|
| 69 | fUseUniqueID = GetBool("UseUniqueID", false);
|
---|
| 70 |
|
---|
[d7d2da3] | 71 | // import arrays with output from other modules
|
---|
| 72 |
|
---|
| 73 | ExRootConfParam param = GetParam("InputArray");
|
---|
| 74 | Long_t i, size;
|
---|
| 75 | const TObjArray *array;
|
---|
| 76 | TIterator *iterator;
|
---|
| 77 |
|
---|
[93da593] | 78 | fInputMap.clear();
|
---|
| 79 |
|
---|
[d7d2da3] | 80 | size = param.GetSize();
|
---|
[341014c] | 81 | for(i = 0; i < size / 2; ++i)
|
---|
[d7d2da3] | 82 | {
|
---|
[341014c] | 83 | array = ImportArray(param[i * 2].GetString());
|
---|
[d7d2da3] | 84 | iterator = array->MakeIterator();
|
---|
| 85 |
|
---|
[341014c] | 86 | fInputMap.push_back(make_pair(iterator, ExportArray(param[i * 2 + 1].GetString())));
|
---|
[d7d2da3] | 87 | }
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | //------------------------------------------------------------------------------
|
---|
| 91 |
|
---|
| 92 | void UniqueObjectFinder::Finish()
|
---|
| 93 | {
|
---|
[77e9ae1] | 94 | vector<pair<TIterator *, TObjArray *> >::iterator itInputMap;
|
---|
[d7d2da3] | 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 |
|
---|
| 107 | void UniqueObjectFinder::Process()
|
---|
| 108 | {
|
---|
| 109 | Candidate *candidate;
|
---|
[77e9ae1] | 110 | vector<pair<TIterator *, TObjArray *> >::iterator itInputMap;
|
---|
[d7d2da3] | 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();
|
---|
[341014c] | 122 | while((candidate = static_cast<Candidate *>(iterator->Next())))
|
---|
[d7d2da3] | 123 | {
|
---|
| 124 | if(Unique(candidate, itInputMap))
|
---|
| 125 | {
|
---|
| 126 | array->Add(candidate);
|
---|
| 127 | }
|
---|
| 128 | }
|
---|
| 129 | }
|
---|
| 130 | }
|
---|
| 131 |
|
---|
| 132 | //------------------------------------------------------------------------------
|
---|
| 133 |
|
---|
[77e9ae1] | 134 | Bool_t UniqueObjectFinder::Unique(Candidate *candidate, vector<pair<TIterator *, TObjArray *> >::iterator itInputMap)
|
---|
[d7d2da3] | 135 | {
|
---|
| 136 | Candidate *previousCandidate;
|
---|
[77e9ae1] | 137 | vector<pair<TIterator *, TObjArray *> >::iterator previousItInputMap;
|
---|
[d7d2da3] | 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();
|
---|
[341014c] | 148 | while((previousCandidate = static_cast<Candidate *>(iterator.Next())))
|
---|
[d7d2da3] | 149 | {
|
---|
[70bb4cb] | 150 | if(fUseUniqueID)
|
---|
| 151 | {
|
---|
| 152 | if(candidate->GetUniqueID() == previousCandidate->GetUniqueID())
|
---|
| 153 | {
|
---|
| 154 | return kFALSE;
|
---|
| 155 | }
|
---|
| 156 | }
|
---|
| 157 | else
|
---|
[d7d2da3] | 158 | {
|
---|
[70bb4cb] | 159 | if(candidate->Overlaps(previousCandidate))
|
---|
| 160 | {
|
---|
| 161 | return kFALSE;
|
---|
| 162 | }
|
---|
[d7d2da3] | 163 | }
|
---|
| 164 | }
|
---|
| 165 | }
|
---|
| 166 |
|
---|
| 167 | return kTRUE;
|
---|
| 168 | }
|
---|
| 169 |
|
---|
| 170 | //------------------------------------------------------------------------------
|
---|