[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 |
|
---|
[b5e3bbd] | 19 | /** \class Weighter
|
---|
| 20 | *
|
---|
| 21 | * Apply a weight depending on PDG code.
|
---|
| 22 | *
|
---|
| 23 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 24 | *
|
---|
| 25 | */
|
---|
| 26 |
|
---|
| 27 | #include "modules/Weighter.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"
|
---|
[b5e3bbd] | 36 |
|
---|
| 37 | #include "TDatabasePDG.h"
|
---|
[341014c] | 38 | #include "TFormula.h"
|
---|
[b5e3bbd] | 39 | #include "TLorentzVector.h"
|
---|
[341014c] | 40 | #include "TMath.h"
|
---|
| 41 | #include "TObjArray.h"
|
---|
| 42 | #include "TRandom3.h"
|
---|
| 43 | #include "TString.h"
|
---|
[b5e3bbd] | 44 |
|
---|
| 45 | #include <algorithm>
|
---|
| 46 | #include <iostream>
|
---|
| 47 | #include <sstream>
|
---|
[341014c] | 48 | #include <stdexcept>
|
---|
[b5e3bbd] | 49 |
|
---|
| 50 | using namespace std;
|
---|
| 51 |
|
---|
| 52 | //------------------------------------------------------------------------------
|
---|
| 53 |
|
---|
[341014c] | 54 | bool Weighter::TIndexStruct::operator<(const Weighter::TIndexStruct &value) const
|
---|
[b5e3bbd] | 55 | {
|
---|
| 56 | Int_t i;
|
---|
| 57 |
|
---|
| 58 | for(i = 0; i < 4; ++i)
|
---|
| 59 | {
|
---|
| 60 | if(codes[i] != value.codes[i]) return codes[i] < value.codes[i];
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | return false;
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | //------------------------------------------------------------------------------
|
---|
| 67 |
|
---|
| 68 | Weighter::Weighter() :
|
---|
| 69 | fItInputArray(0)
|
---|
| 70 | {
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | //------------------------------------------------------------------------------
|
---|
| 74 |
|
---|
| 75 | Weighter::~Weighter()
|
---|
| 76 | {
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | //------------------------------------------------------------------------------
|
---|
| 80 |
|
---|
| 81 | void Weighter::Init()
|
---|
| 82 | {
|
---|
| 83 | ExRootConfParam param, paramCodes;
|
---|
| 84 | Int_t i, j, size, sizeCodes;
|
---|
| 85 | Int_t code;
|
---|
| 86 | TIndexStruct index;
|
---|
| 87 | Double_t weight;
|
---|
| 88 |
|
---|
| 89 | fWeightSet.clear();
|
---|
| 90 |
|
---|
| 91 | // set default weight value
|
---|
| 92 | fWeightMap.clear();
|
---|
[341014c] | 93 | memset(index.codes, 0, 4 * sizeof(Int_t));
|
---|
[b5e3bbd] | 94 | fWeightMap[index] = 1.0;
|
---|
| 95 |
|
---|
| 96 | // read weights
|
---|
| 97 | param = GetParam("Weight");
|
---|
| 98 | size = param.GetSize();
|
---|
[341014c] | 99 | for(i = 0; i < size / 2; ++i)
|
---|
[b5e3bbd] | 100 | {
|
---|
[341014c] | 101 | paramCodes = param[i * 2];
|
---|
[b5e3bbd] | 102 | sizeCodes = paramCodes.GetSize();
|
---|
[341014c] | 103 | weight = param[i * 2 + 1].GetDouble();
|
---|
[b5e3bbd] | 104 |
|
---|
| 105 | if(sizeCodes < 1 || sizeCodes > 4)
|
---|
| 106 | {
|
---|
| 107 | throw runtime_error("only 1, 2, 3 or 4 PDG codes can be specified per weight");
|
---|
| 108 | }
|
---|
| 109 |
|
---|
[341014c] | 110 | memset(index.codes, 0, 4 * sizeof(Int_t));
|
---|
[b5e3bbd] | 111 |
|
---|
| 112 | for(j = 0; j < sizeCodes; ++j)
|
---|
| 113 | {
|
---|
| 114 | code = paramCodes[j].GetInt();
|
---|
| 115 | index.codes[j] = code;
|
---|
| 116 | fWeightSet.insert(code);
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | sort(index.codes, index.codes + 4);
|
---|
| 120 |
|
---|
| 121 | fWeightMap[index] = weight;
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | // import input array(s)
|
---|
| 125 |
|
---|
| 126 | fInputArray = ImportArray(GetString("InputArray", "Delphes/allParticles"));
|
---|
| 127 | fItInputArray = fInputArray->MakeIterator();
|
---|
| 128 |
|
---|
| 129 | // create output array(s)
|
---|
| 130 |
|
---|
| 131 | fOutputArray = ExportArray(GetString("OutputArray", "weight"));
|
---|
| 132 | }
|
---|
| 133 |
|
---|
| 134 | //------------------------------------------------------------------------------
|
---|
| 135 |
|
---|
| 136 | void Weighter::Finish()
|
---|
| 137 | {
|
---|
| 138 | if(fItInputArray) delete fItInputArray;
|
---|
| 139 | }
|
---|
| 140 |
|
---|
| 141 | //------------------------------------------------------------------------------
|
---|
| 142 |
|
---|
| 143 | void Weighter::Process()
|
---|
| 144 | {
|
---|
| 145 | Candidate *candidate;
|
---|
| 146 | Int_t i;
|
---|
| 147 | TIndexStruct index;
|
---|
| 148 | Double_t weight;
|
---|
| 149 | set<Int_t>::iterator itCodeSet;
|
---|
| 150 | map<TIndexStruct, Double_t>::iterator itWeightMap;
|
---|
| 151 |
|
---|
| 152 | DelphesFactory *factory = GetFactory();
|
---|
| 153 |
|
---|
| 154 | // loop over all particles
|
---|
| 155 | fCodeSet.clear();
|
---|
| 156 | fItInputArray->Reset();
|
---|
[341014c] | 157 | while((candidate = static_cast<Candidate *>(fItInputArray->Next())))
|
---|
[b5e3bbd] | 158 | {
|
---|
| 159 | if(candidate->Status != 3) continue;
|
---|
| 160 |
|
---|
| 161 | if(fWeightSet.find(candidate->PID) == fWeightSet.end()) continue;
|
---|
| 162 |
|
---|
| 163 | fCodeSet.insert(candidate->PID);
|
---|
| 164 | }
|
---|
| 165 |
|
---|
| 166 | // find default weight value
|
---|
[341014c] | 167 | memset(index.codes, 0, 4 * sizeof(Int_t));
|
---|
[b5e3bbd] | 168 | itWeightMap = fWeightMap.find(index);
|
---|
| 169 | weight = itWeightMap->second;
|
---|
| 170 |
|
---|
| 171 | if(fCodeSet.size() <= 4)
|
---|
| 172 | {
|
---|
| 173 | i = 0;
|
---|
| 174 | for(itCodeSet = fCodeSet.begin(); itCodeSet != fCodeSet.end(); ++itCodeSet)
|
---|
| 175 | {
|
---|
| 176 | index.codes[i] = *itCodeSet;
|
---|
| 177 | ++i;
|
---|
| 178 | }
|
---|
| 179 |
|
---|
| 180 | sort(index.codes, index.codes + 4);
|
---|
| 181 |
|
---|
| 182 | itWeightMap = fWeightMap.find(index);
|
---|
| 183 | if(itWeightMap != fWeightMap.end())
|
---|
| 184 | {
|
---|
| 185 | weight = itWeightMap->second;
|
---|
| 186 | }
|
---|
| 187 | }
|
---|
| 188 |
|
---|
| 189 | candidate = factory->NewCandidate();
|
---|
| 190 | candidate->Momentum.SetPtEtaPhiE(weight, 0.0, 0.0, weight);
|
---|
| 191 | fOutputArray->Add(candidate);
|
---|
| 192 | }
|
---|
| 193 |
|
---|
| 194 | //------------------------------------------------------------------------------
|
---|