[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
|
---|
| 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 |
|
---|
[d7d2da3] | 19 |
|
---|
| 20 | /** \class TrackPileUpSubtractor
|
---|
| 21 | *
|
---|
| 22 | * Subtract pile-up contribution from tracks.
|
---|
| 23 | *
|
---|
| 24 | * $Date$
|
---|
| 25 | * $Revision$
|
---|
| 26 | *
|
---|
| 27 | *
|
---|
| 28 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 29 | *
|
---|
| 30 | */
|
---|
| 31 |
|
---|
| 32 | #include "modules/TrackPileUpSubtractor.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 |
|
---|
| 55 | using namespace std;
|
---|
| 56 |
|
---|
| 57 | //------------------------------------------------------------------------------
|
---|
| 58 |
|
---|
| 59 | TrackPileUpSubtractor::TrackPileUpSubtractor()
|
---|
| 60 | {
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | //------------------------------------------------------------------------------
|
---|
| 64 |
|
---|
| 65 | TrackPileUpSubtractor::~TrackPileUpSubtractor()
|
---|
| 66 | {
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | //------------------------------------------------------------------------------
|
---|
| 70 |
|
---|
| 71 | void TrackPileUpSubtractor::Init()
|
---|
| 72 | {
|
---|
[22dc7fd] | 73 | // import input array
|
---|
| 74 |
|
---|
| 75 | fVertexInputArray = ImportArray(GetString("VertexInputArray", "PileUpMerger/vertices"));
|
---|
| 76 | fItVertexInputArray = fVertexInputArray->MakeIterator();
|
---|
| 77 |
|
---|
[d7d2da3] | 78 | fZVertexResolution = GetDouble("ZVertexResolution", 0.005)*1.0E3;
|
---|
| 79 |
|
---|
| 80 | // import arrays with output from other modules
|
---|
| 81 |
|
---|
| 82 | ExRootConfParam param = GetParam("InputArray");
|
---|
| 83 | Long_t i, size;
|
---|
| 84 | const TObjArray *array;
|
---|
| 85 | TIterator *iterator;
|
---|
| 86 |
|
---|
| 87 | size = param.GetSize();
|
---|
| 88 | for(i = 0; i < size/2; ++i)
|
---|
| 89 | {
|
---|
| 90 | array = ImportArray(param[i*2].GetString());
|
---|
| 91 | iterator = array->MakeIterator();
|
---|
| 92 |
|
---|
[498cda4] | 93 | fInputMap[iterator] = ExportArray(param[i*2 + 1].GetString());
|
---|
[d7d2da3] | 94 | }
|
---|
| 95 | }
|
---|
| 96 |
|
---|
| 97 | //------------------------------------------------------------------------------
|
---|
| 98 |
|
---|
| 99 | void TrackPileUpSubtractor::Finish()
|
---|
| 100 | {
|
---|
| 101 | map< TIterator *, TObjArray * >::iterator itInputMap;
|
---|
| 102 | TIterator *iterator;
|
---|
| 103 |
|
---|
| 104 | for(itInputMap = fInputMap.begin(); itInputMap != fInputMap.end(); ++itInputMap)
|
---|
| 105 | {
|
---|
| 106 | iterator = itInputMap->first;
|
---|
| 107 |
|
---|
| 108 | if(iterator) delete iterator;
|
---|
| 109 | }
|
---|
[22dc7fd] | 110 |
|
---|
| 111 | if(fItVertexInputArray) delete fItVertexInputArray;
|
---|
[d7d2da3] | 112 | }
|
---|
| 113 |
|
---|
| 114 | //------------------------------------------------------------------------------
|
---|
| 115 |
|
---|
| 116 | void TrackPileUpSubtractor::Process()
|
---|
| 117 | {
|
---|
| 118 | Candidate *candidate, *particle;
|
---|
| 119 | map< TIterator *, TObjArray * >::iterator itInputMap;
|
---|
| 120 | TIterator *iterator;
|
---|
| 121 | TObjArray *array;
|
---|
[24d005f] | 122 | Double_t z, zvtx=0;
|
---|
[22dc7fd] | 123 |
|
---|
| 124 |
|
---|
| 125 | // find z position of primary vertex
|
---|
| 126 |
|
---|
| 127 | fItVertexInputArray->Reset();
|
---|
| 128 | while((candidate = static_cast<Candidate*>(fItVertexInputArray->Next())))
|
---|
| 129 | {
|
---|
[54b6dfc] | 130 | if(!candidate->IsPU)
|
---|
[22dc7fd] | 131 | {
|
---|
| 132 | zvtx = candidate->Position.Z();
|
---|
[54b6dfc] | 133 | // break;
|
---|
[22dc7fd] | 134 | }
|
---|
| 135 | }
|
---|
| 136 |
|
---|
[d7d2da3] | 137 | // loop over all input arrays
|
---|
| 138 | for(itInputMap = fInputMap.begin(); itInputMap != fInputMap.end(); ++itInputMap)
|
---|
| 139 | {
|
---|
| 140 | iterator = itInputMap->first;
|
---|
| 141 | array = itInputMap->second;
|
---|
| 142 |
|
---|
| 143 | // loop over all candidates
|
---|
| 144 | iterator->Reset();
|
---|
| 145 | while((candidate = static_cast<Candidate*>(iterator->Next())))
|
---|
| 146 | {
|
---|
| 147 | particle = static_cast<Candidate*>(candidate->GetCandidates()->At(0));
|
---|
| 148 | z = particle->Position.Z();
|
---|
[54b6dfc] | 149 |
|
---|
[d7d2da3] | 150 | // apply pile-up subtraction
|
---|
| 151 | // assume perfect pile-up subtraction for tracks outside fZVertexResolution
|
---|
[54b6dfc] | 152 |
|
---|
[22dc7fd] | 153 | if(candidate->IsPU && TMath::Abs(z-zvtx) > fZVertexResolution) continue;
|
---|
[d7d2da3] | 154 |
|
---|
| 155 | array->Add(candidate);
|
---|
| 156 | }
|
---|
| 157 | }
|
---|
| 158 | }
|
---|
| 159 |
|
---|
| 160 | //------------------------------------------------------------------------------
|
---|