Fork me on GitHub

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

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 2eb25b1 was 856efb6, checked in by selvaggi <michele.selvaggi@…>, 10 years ago

Update IdentificationMap.cc

  • Property mode set to 100644
File size: 6.3 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 IdentificationMap
21 *
22 * Converts particles with some PDG code into another particle, according to parametrized probability as function of pt eta
23 given by user.
24 *
25 * $Date: 2014-08-07 14:57:44 +0100 (Thu, 07 Aug 2014) $
26 * $Revision: 905 $
27 *
28 *
29 * \author M. Selvaggi - UCL, Louvain-la-Neuve
30 *
31 */
32
33#include "modules/IdentificationMap.h"
34
35#include "classes/DelphesClasses.h"
36#include "classes/DelphesFactory.h"
37#include "classes/DelphesFormula.h"
38
39#include "ExRootAnalysis/ExRootResult.h"
40#include "ExRootAnalysis/ExRootFilter.h"
41#include "ExRootAnalysis/ExRootClassifier.h"
42
43#include "TMath.h"
44#include "TString.h"
45#include "TFormula.h"
46#include "TRandom3.h"
47#include "TObjArray.h"
48#include "TDatabasePDG.h"
49#include "TLorentzVector.h"
50
51#include <algorithm>
52#include <stdexcept>
53#include <iostream>
54#include <sstream>
55
56using namespace std;
57
58//------------------------------------------------------------------------------
59
60IdentificationMap::IdentificationMap() :
61 fItInputArray(0)
62{
63}
64
65//------------------------------------------------------------------------------
66
67IdentificationMap::~IdentificationMap()
68{
69}
70
71//------------------------------------------------------------------------------
72
73void IdentificationMap::Init()
74{
75 // read efficiency formula
76
77
78 TMisIDMap::iterator itEfficiencyMap;
79 ExRootConfParam param;
80 DelphesFormula *formula;
81 Int_t i, size, pdg;
82
83 // read efficiency formulas
84 param = GetParam("EfficiencyFormula");
85 size = param.GetSize();
86
87 fEfficiencyMap.clear();
88 for(i = 0; i < size/3; ++i)
89 {
90 formula = new DelphesFormula;
91 formula->Compile(param[i*3 + 2].GetString());
92 pdg = param[i*3].GetInt();
93 fEfficiencyMap.insert(make_pair(pdg,make_pair(param[i*3 + 1].GetInt(),formula)));
94
95 // cout<<param[i*3].GetInt()<<","<<param[i*3+1].GetInt()<<","<<param[i*3 + 2].GetString()<<endl;
96
97 }
98
99 // set default efficiency formula
100 itEfficiencyMap = fEfficiencyMap.find(0);
101 if(itEfficiencyMap == fEfficiencyMap.end())
102 {
103 formula = new DelphesFormula;
104 formula->Compile("1.0");
105
106 fEfficiencyMap.insert(make_pair(0,make_pair(0,formula)));
107 }
108
109 // import input array
110
111 fInputArray = ImportArray(GetString("InputArray", "ParticlePropagator/stableParticles"));
112 fItInputArray = fInputArray->MakeIterator();
113
114 // create output array
115
116 fOutputArray = ExportArray(GetString("OutputArray", "stableParticles"));
117}
118
119//------------------------------------------------------------------------------
120
121void IdentificationMap::Finish()
122{
123 if(fItInputArray) delete fItInputArray;
124
125 TMisIDMap::iterator itEfficiencyMap;
126 DelphesFormula *formula;
127 for(itEfficiencyMap = fEfficiencyMap.begin(); itEfficiencyMap != fEfficiencyMap.end(); ++itEfficiencyMap)
128 {
129 formula = (itEfficiencyMap->second).second;
130 if(formula) delete formula;
131 }
132
133}
134
135//------------------------------------------------------------------------------
136
137void IdentificationMap::Process()
138{
139 Candidate *candidate;
140 Double_t pt, eta, phi;
141 TMisIDMap::iterator itEfficiencyMap;
142 pair <TMisIDMap::iterator, TMisIDMap::iterator> range;
143 DelphesFormula *formula;
144 Int_t pdgIn, pdgOut, charge;
145
146 Double_t P, Pi;
147
148 // cout<<"------------ New Event ------------"<<endl;
149
150 fItInputArray->Reset();
151 while((candidate = static_cast<Candidate*>(fItInputArray->Next())))
152 {
153 const TLorentzVector &candidatePosition = candidate->Position;
154 const TLorentzVector &candidateMomentum = candidate->Momentum;
155 eta = candidatePosition.Eta();
156 phi = candidatePosition.Phi();
157 pt = candidateMomentum.Pt();
158 pdgIn = candidate->PID;
159 charge = candidate->Charge;
160
161 // cout<<"------------ New Candidate ------------"<<endl;
162 // cout<<candidate->PID<<" "<<pt<<","<<eta<<","<<phi<<endl;
163
164 P = 1.0;
165
166 //first check that PID of this particle is specified in cfg, if not set look for PID=0
167
168 itEfficiencyMap = fEfficiencyMap.find(pdgIn);
169
170 range = fEfficiencyMap.equal_range(pdgIn);
171 if(range.first == range.second) range = fEfficiencyMap.equal_range(-pdgIn);
172 if(range.first == range.second) range = fEfficiencyMap.equal_range(0);
173
174 //loop over submap for this pid
175 for (TMisIDMap::iterator it=range.first; it!=range.second; ++it)
176 {
177
178 formula = (it->second).second;
179 pdgOut = (it->second).first;
180
181 Pi = formula->Eval(pt, eta);
182
183 // cout<<"PdgIn: "<<pdgIn<<", PdgOut: "<<pdgOut<<", Pi = "<<Pi<<endl;
184
185 // check that sum of probabilities does not exceed 1.
186
187 P = (P - Pi)/P;
188
189 if( P < 0.0 )
190 {
191 // cout<<"Sum of probabilities exceeds 1 for particle ID "<<pdgIn<<", check formulas in IdentificationMap module"<<endl;
192 continue;
193 }
194 else
195 {
196
197 //randomly assign a PID to particle according to map
198
199 Double_t rndm = gRandom->Uniform();
200 // cout<<"Random number vs P // "<<rndm<<" "<<P<<endl;
201
202 if(rndm > P)
203 //if(gRandom->Uniform() > P)
204 {
205 // cout<<"particle "<<candidate->PID<<" --> ";
206
207 //change PID of particle
208 if(pdgOut != 0) candidate->PID = charge*pdgOut;
209 // cout<<"Final PID: "<<candidate->PID<<endl;
210
211 fOutputArray->Add(candidate);
212 break;
213 }
214 }
215
216 }
217
218 }
219
220}
221
222//------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.