[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 |
|
---|
[b4786d3] | 19 | /** \class DelphesHepMC2Reader
|
---|
[d7d2da3] | 20 | *
|
---|
| 21 | * Reads HepMC file
|
---|
| 22 | *
|
---|
| 23 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 24 | *
|
---|
| 25 | */
|
---|
| 26 |
|
---|
[b4786d3] | 27 | #include "classes/DelphesHepMC2Reader.h"
|
---|
[d7d2da3] | 28 |
|
---|
| 29 | #include <iostream>
|
---|
| 30 | #include <sstream>
|
---|
[341014c] | 31 | #include <stdexcept>
|
---|
[d7d2da3] | 32 |
|
---|
| 33 | #include <map>
|
---|
[59abd43] | 34 | #include <vector>
|
---|
[d7d2da3] | 35 |
|
---|
| 36 | #include <stdio.h>
|
---|
| 37 |
|
---|
| 38 | #include "TDatabasePDG.h"
|
---|
| 39 | #include "TLorentzVector.h"
|
---|
[341014c] | 40 | #include "TObjArray.h"
|
---|
| 41 | #include "TParticlePDG.h"
|
---|
| 42 | #include "TStopwatch.h"
|
---|
[d7d2da3] | 43 |
|
---|
| 44 | #include "classes/DelphesClasses.h"
|
---|
| 45 | #include "classes/DelphesFactory.h"
|
---|
| 46 | #include "classes/DelphesStream.h"
|
---|
| 47 |
|
---|
| 48 | #include "ExRootAnalysis/ExRootTreeBranch.h"
|
---|
| 49 |
|
---|
| 50 | using namespace std;
|
---|
| 51 |
|
---|
[c6667c0] | 52 | static const int kBufferSize = 16384;
|
---|
[d7d2da3] | 53 |
|
---|
| 54 | //---------------------------------------------------------------------------
|
---|
| 55 |
|
---|
[b4786d3] | 56 | DelphesHepMC2Reader::DelphesHepMC2Reader() :
|
---|
[d7d2da3] | 57 | fInputFile(0), fBuffer(0), fPDG(0),
|
---|
| 58 | fVertexCounter(-1), fInCounter(-1), fOutCounter(-1),
|
---|
| 59 | fParticleCounter(0)
|
---|
| 60 | {
|
---|
| 61 | fBuffer = new char[kBufferSize];
|
---|
| 62 |
|
---|
| 63 | fPDG = TDatabasePDG::Instance();
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | //---------------------------------------------------------------------------
|
---|
| 67 |
|
---|
[b4786d3] | 68 | DelphesHepMC2Reader::~DelphesHepMC2Reader()
|
---|
[d7d2da3] | 69 | {
|
---|
| 70 | if(fBuffer) delete[] fBuffer;
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | //---------------------------------------------------------------------------
|
---|
| 74 |
|
---|
[b4786d3] | 75 | void DelphesHepMC2Reader::SetInputFile(FILE *inputFile)
|
---|
[d7d2da3] | 76 | {
|
---|
| 77 | fInputFile = inputFile;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | //---------------------------------------------------------------------------
|
---|
| 81 |
|
---|
[b4786d3] | 82 | void DelphesHepMC2Reader::Clear()
|
---|
[d7d2da3] | 83 | {
|
---|
[59abd43] | 84 | fStateSize = 0;
|
---|
| 85 | fState.clear();
|
---|
| 86 | fWeightSize = 0;
|
---|
| 87 | fWeight.clear();
|
---|
[cf22deb] | 88 | fMomentumCoefficient = 1.0;
|
---|
| 89 | fPositionCoefficient = 1.0;
|
---|
[d7d2da3] | 90 | fVertexCounter = -1;
|
---|
| 91 | fInCounter = -1;
|
---|
| 92 | fOutCounter = -1;
|
---|
| 93 | fMotherMap.clear();
|
---|
| 94 | fDaughterMap.clear();
|
---|
| 95 | fParticleCounter = 0;
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | //---------------------------------------------------------------------------
|
---|
| 99 |
|
---|
[b4786d3] | 100 | bool DelphesHepMC2Reader::EventReady()
|
---|
[d7d2da3] | 101 | {
|
---|
| 102 | return (fVertexCounter == 0) && (fInCounter == 0) && (fOutCounter == 0);
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | //---------------------------------------------------------------------------
|
---|
| 106 |
|
---|
[b4786d3] | 107 | bool DelphesHepMC2Reader::ReadBlock(DelphesFactory *factory,
|
---|
[d7d2da3] | 108 | TObjArray *allParticleOutputArray,
|
---|
| 109 | TObjArray *stableParticleOutputArray,
|
---|
| 110 | TObjArray *partonOutputArray)
|
---|
| 111 | {
|
---|
[77e9ae1] | 112 | map<int, pair<int, int> >::iterator itMotherMap;
|
---|
| 113 | map<int, pair<int, int> >::iterator itDaughterMap;
|
---|
[cf22deb] | 114 | char key, momentumUnit[4], positionUnit[3];
|
---|
[59abd43] | 115 | int i, rc, state;
|
---|
| 116 | double weight;
|
---|
[d7d2da3] | 117 |
|
---|
| 118 | if(!fgets(fBuffer, kBufferSize, fInputFile)) return kFALSE;
|
---|
| 119 |
|
---|
| 120 | DelphesStream bufferStream(fBuffer + 1);
|
---|
| 121 |
|
---|
| 122 | key = fBuffer[0];
|
---|
| 123 |
|
---|
| 124 | if(key == 'E')
|
---|
| 125 | {
|
---|
| 126 | Clear();
|
---|
| 127 |
|
---|
| 128 | rc = bufferStream.ReadInt(fEventNumber)
|
---|
| 129 | && bufferStream.ReadInt(fMPI)
|
---|
| 130 | && bufferStream.ReadDbl(fScale)
|
---|
| 131 | && bufferStream.ReadDbl(fAlphaQCD)
|
---|
| 132 | && bufferStream.ReadDbl(fAlphaQED)
|
---|
| 133 | && bufferStream.ReadInt(fProcessID)
|
---|
| 134 | && bufferStream.ReadInt(fSignalCode)
|
---|
[59abd43] | 135 | && bufferStream.ReadInt(fVertexCounter)
|
---|
| 136 | && bufferStream.ReadInt(fBeamCode[0])
|
---|
| 137 | && bufferStream.ReadInt(fBeamCode[1])
|
---|
| 138 | && bufferStream.ReadInt(fStateSize);
|
---|
| 139 |
|
---|
| 140 | if(!rc)
|
---|
| 141 | {
|
---|
[341014c] | 142 | cerr << "** ERROR: "
|
---|
| 143 | << "invalid event format" << endl;
|
---|
[59abd43] | 144 | return kFALSE;
|
---|
| 145 | }
|
---|
| 146 |
|
---|
| 147 | for(i = 0; i < fStateSize; ++i)
|
---|
| 148 | {
|
---|
| 149 | rc = rc && bufferStream.ReadInt(state);
|
---|
| 150 | fState.push_back(state);
|
---|
| 151 | }
|
---|
| 152 |
|
---|
| 153 | rc = rc && bufferStream.ReadInt(fWeightSize);
|
---|
| 154 |
|
---|
| 155 | if(!rc)
|
---|
| 156 | {
|
---|
[341014c] | 157 | cerr << "** ERROR: "
|
---|
| 158 | << "invalid event format" << endl;
|
---|
[59abd43] | 159 | return kFALSE;
|
---|
| 160 | }
|
---|
| 161 |
|
---|
| 162 | for(i = 0; i < fWeightSize; ++i)
|
---|
| 163 | {
|
---|
| 164 | rc = rc && bufferStream.ReadDbl(weight);
|
---|
| 165 | fWeight.push_back(weight);
|
---|
| 166 | }
|
---|
[d7d2da3] | 167 |
|
---|
| 168 | if(!rc)
|
---|
| 169 | {
|
---|
[341014c] | 170 | cerr << "** ERROR: "
|
---|
| 171 | << "invalid event format" << endl;
|
---|
[d7d2da3] | 172 | return kFALSE;
|
---|
| 173 | }
|
---|
| 174 | }
|
---|
[cf22deb] | 175 | else if(key == 'U')
|
---|
| 176 | {
|
---|
| 177 | rc = sscanf(fBuffer + 1, "%3s %2s", momentumUnit, positionUnit);
|
---|
| 178 |
|
---|
| 179 | if(rc != 2)
|
---|
| 180 | {
|
---|
[341014c] | 181 | cerr << "** ERROR: "
|
---|
| 182 | << "invalid units format" << endl;
|
---|
[cf22deb] | 183 | return kFALSE;
|
---|
| 184 | }
|
---|
| 185 |
|
---|
| 186 | if(strncmp(momentumUnit, "GEV", 3) == 0)
|
---|
| 187 | {
|
---|
| 188 | fMomentumCoefficient = 1.0;
|
---|
| 189 | }
|
---|
| 190 | else if(strncmp(momentumUnit, "MEV", 3) == 0)
|
---|
| 191 | {
|
---|
| 192 | fMomentumCoefficient = 0.001;
|
---|
| 193 | }
|
---|
[341014c] | 194 |
|
---|
[cf22deb] | 195 | if(strncmp(positionUnit, "MM", 3) == 0)
|
---|
| 196 | {
|
---|
| 197 | fPositionCoefficient = 1.0;
|
---|
| 198 | }
|
---|
| 199 | else if(strncmp(positionUnit, "CM", 3) == 0)
|
---|
| 200 | {
|
---|
| 201 | fPositionCoefficient = 10.0;
|
---|
| 202 | }
|
---|
| 203 | }
|
---|
[edeb0f0] | 204 | else if(key == 'C')
|
---|
| 205 | {
|
---|
| 206 | rc = bufferStream.ReadDbl(fCrossSection)
|
---|
| 207 | && bufferStream.ReadDbl(fCrossSectionError);
|
---|
[341014c] | 208 |
|
---|
[b4786d3] | 209 | if(!rc)
|
---|
| 210 | {
|
---|
| 211 | cerr << "** ERROR: "
|
---|
| 212 | << "invalid cross section format" << endl;
|
---|
| 213 | return kFALSE;
|
---|
| 214 | }
|
---|
| 215 | }
|
---|
[d7d2da3] | 216 | else if(key == 'F')
|
---|
| 217 | {
|
---|
| 218 | rc = bufferStream.ReadInt(fID1)
|
---|
| 219 | && bufferStream.ReadInt(fID2)
|
---|
| 220 | && bufferStream.ReadDbl(fX1)
|
---|
| 221 | && bufferStream.ReadDbl(fX2)
|
---|
| 222 | && bufferStream.ReadDbl(fScalePDF)
|
---|
| 223 | && bufferStream.ReadDbl(fPDF1)
|
---|
| 224 | && bufferStream.ReadDbl(fPDF2);
|
---|
| 225 |
|
---|
| 226 | if(!rc)
|
---|
| 227 | {
|
---|
[341014c] | 228 | cerr << "** ERROR: "
|
---|
| 229 | << "invalid PDF format" << endl;
|
---|
[d7d2da3] | 230 | return kFALSE;
|
---|
| 231 | }
|
---|
| 232 | }
|
---|
| 233 | else if(key == 'V' && fVertexCounter > 0)
|
---|
| 234 | {
|
---|
| 235 | rc = bufferStream.ReadInt(fOutVertexCode)
|
---|
| 236 | && bufferStream.ReadInt(fVertexID)
|
---|
| 237 | && bufferStream.ReadDbl(fX)
|
---|
| 238 | && bufferStream.ReadDbl(fY)
|
---|
| 239 | && bufferStream.ReadDbl(fZ)
|
---|
| 240 | && bufferStream.ReadDbl(fT)
|
---|
| 241 | && bufferStream.ReadInt(fInCounter)
|
---|
| 242 | && bufferStream.ReadInt(fOutCounter);
|
---|
| 243 |
|
---|
| 244 | if(!rc)
|
---|
| 245 | {
|
---|
[341014c] | 246 | cerr << "** ERROR: "
|
---|
| 247 | << "invalid vertex format" << endl;
|
---|
[d7d2da3] | 248 | return kFALSE;
|
---|
| 249 | }
|
---|
| 250 | --fVertexCounter;
|
---|
| 251 | }
|
---|
| 252 | else if(key == 'P' && fOutCounter > 0)
|
---|
| 253 | {
|
---|
| 254 | rc = bufferStream.ReadInt(fParticleCode)
|
---|
| 255 | && bufferStream.ReadInt(fPID)
|
---|
| 256 | && bufferStream.ReadDbl(fPx)
|
---|
| 257 | && bufferStream.ReadDbl(fPy)
|
---|
| 258 | && bufferStream.ReadDbl(fPz)
|
---|
| 259 | && bufferStream.ReadDbl(fE)
|
---|
| 260 | && bufferStream.ReadDbl(fMass)
|
---|
| 261 | && bufferStream.ReadInt(fStatus)
|
---|
| 262 | && bufferStream.ReadDbl(fTheta)
|
---|
| 263 | && bufferStream.ReadDbl(fPhi)
|
---|
| 264 | && bufferStream.ReadInt(fInVertexCode);
|
---|
| 265 |
|
---|
| 266 | if(!rc)
|
---|
| 267 | {
|
---|
[341014c] | 268 | cerr << "** ERROR: "
|
---|
| 269 | << "invalid particle format" << endl;
|
---|
[d7d2da3] | 270 | return kFALSE;
|
---|
| 271 | }
|
---|
| 272 |
|
---|
| 273 | if(fInVertexCode < 0)
|
---|
| 274 | {
|
---|
| 275 | itMotherMap = fMotherMap.find(fInVertexCode);
|
---|
| 276 | if(itMotherMap == fMotherMap.end())
|
---|
| 277 | {
|
---|
| 278 | fMotherMap[fInVertexCode] = make_pair(fParticleCounter, -1);
|
---|
| 279 | }
|
---|
| 280 | else
|
---|
| 281 | {
|
---|
| 282 | itMotherMap->second.second = fParticleCounter;
|
---|
| 283 | }
|
---|
| 284 | }
|
---|
| 285 |
|
---|
| 286 | if(fInCounter <= 0)
|
---|
| 287 | {
|
---|
| 288 | itDaughterMap = fDaughterMap.find(fOutVertexCode);
|
---|
| 289 | if(itDaughterMap == fDaughterMap.end())
|
---|
| 290 | {
|
---|
| 291 | fDaughterMap[fOutVertexCode] = make_pair(fParticleCounter, fParticleCounter);
|
---|
| 292 | }
|
---|
| 293 | else
|
---|
| 294 | {
|
---|
| 295 | itDaughterMap->second.second = fParticleCounter;
|
---|
| 296 | }
|
---|
| 297 | }
|
---|
| 298 |
|
---|
| 299 | AnalyzeParticle(factory, allParticleOutputArray,
|
---|
| 300 | stableParticleOutputArray, partonOutputArray);
|
---|
| 301 |
|
---|
| 302 | if(fInCounter > 0)
|
---|
| 303 | {
|
---|
| 304 | --fInCounter;
|
---|
| 305 | }
|
---|
| 306 | else
|
---|
| 307 | {
|
---|
| 308 | --fOutCounter;
|
---|
| 309 | }
|
---|
| 310 |
|
---|
| 311 | ++fParticleCounter;
|
---|
| 312 | }
|
---|
| 313 |
|
---|
| 314 | if(EventReady())
|
---|
| 315 | {
|
---|
| 316 | FinalizeParticles(allParticleOutputArray);
|
---|
| 317 | }
|
---|
| 318 |
|
---|
| 319 | return kTRUE;
|
---|
| 320 | }
|
---|
| 321 |
|
---|
| 322 | //---------------------------------------------------------------------------
|
---|
| 323 |
|
---|
[b4786d3] | 324 | void DelphesHepMC2Reader::AnalyzeEvent(ExRootTreeBranch *branch, long long eventNumber,
|
---|
[d7d2da3] | 325 | TStopwatch *readStopWatch, TStopwatch *procStopWatch)
|
---|
| 326 | {
|
---|
| 327 | HepMCEvent *element;
|
---|
| 328 |
|
---|
| 329 | element = static_cast<HepMCEvent *>(branch->NewEntry());
|
---|
| 330 | element->Number = fEventNumber;
|
---|
| 331 |
|
---|
| 332 | element->ProcessID = fProcessID;
|
---|
| 333 | element->MPI = fMPI;
|
---|
[59abd43] | 334 | element->Weight = fWeight.size() > 0 ? fWeight[0] : 1.0;
|
---|
[edeb0f0] | 335 | element->CrossSection = fCrossSection;
|
---|
| 336 | element->CrossSectionError = fCrossSectionError;
|
---|
[d7d2da3] | 337 | element->Scale = fScale;
|
---|
| 338 | element->AlphaQED = fAlphaQED;
|
---|
| 339 | element->AlphaQCD = fAlphaQCD;
|
---|
| 340 |
|
---|
| 341 | element->ID1 = fID1;
|
---|
| 342 | element->ID2 = fID2;
|
---|
| 343 | element->X1 = fX1;
|
---|
| 344 | element->X2 = fX2;
|
---|
| 345 | element->ScalePDF = fScalePDF;
|
---|
| 346 | element->PDF1 = fPDF1;
|
---|
| 347 | element->PDF2 = fPDF2;
|
---|
| 348 |
|
---|
| 349 | element->ReadTime = readStopWatch->RealTime();
|
---|
| 350 | element->ProcTime = procStopWatch->RealTime();
|
---|
| 351 | }
|
---|
| 352 |
|
---|
| 353 | //---------------------------------------------------------------------------
|
---|
| 354 |
|
---|
[b4786d3] | 355 | void DelphesHepMC2Reader::AnalyzeWeight(ExRootTreeBranch *branch)
|
---|
[d203a37] | 356 | {
|
---|
| 357 | Weight *element;
|
---|
[341014c] | 358 | vector<double>::const_iterator itWeight;
|
---|
[d203a37] | 359 |
|
---|
| 360 | for(itWeight = fWeight.begin(); itWeight != fWeight.end(); ++itWeight)
|
---|
| 361 | {
|
---|
| 362 | element = static_cast<Weight *>(branch->NewEntry());
|
---|
| 363 |
|
---|
| 364 | element->Weight = *itWeight;
|
---|
| 365 | }
|
---|
| 366 | }
|
---|
| 367 |
|
---|
| 368 | //---------------------------------------------------------------------------
|
---|
| 369 |
|
---|
[b4786d3] | 370 | void DelphesHepMC2Reader::AnalyzeParticle(DelphesFactory *factory,
|
---|
[d7d2da3] | 371 | TObjArray *allParticleOutputArray,
|
---|
| 372 | TObjArray *stableParticleOutputArray,
|
---|
| 373 | TObjArray *partonOutputArray)
|
---|
| 374 | {
|
---|
| 375 | Candidate *candidate;
|
---|
| 376 | TParticlePDG *pdgParticle;
|
---|
| 377 | int pdgCode;
|
---|
| 378 |
|
---|
| 379 | candidate = factory->NewCandidate();
|
---|
| 380 |
|
---|
| 381 | candidate->PID = fPID;
|
---|
| 382 | pdgCode = TMath::Abs(candidate->PID);
|
---|
| 383 |
|
---|
| 384 | candidate->Status = fStatus;
|
---|
| 385 |
|
---|
| 386 | pdgParticle = fPDG->GetParticle(fPID);
|
---|
[341014c] | 387 | candidate->Charge = pdgParticle ? int(pdgParticle->Charge() / 3.0) : -999;
|
---|
[80d4a34] | 388 | candidate->Mass = fMass;
|
---|
[d7d2da3] | 389 |
|
---|
| 390 | candidate->Momentum.SetPxPyPzE(fPx, fPy, fPz, fE);
|
---|
[cf22deb] | 391 | if(fMomentumCoefficient != 1.0)
|
---|
| 392 | {
|
---|
| 393 | candidate->Momentum *= fMomentumCoefficient;
|
---|
| 394 | }
|
---|
[d7d2da3] | 395 |
|
---|
| 396 | candidate->M2 = 1;
|
---|
| 397 | candidate->D2 = 1;
|
---|
| 398 | if(fInCounter > 0)
|
---|
| 399 | {
|
---|
| 400 | candidate->M1 = 1;
|
---|
| 401 | candidate->Position.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 402 | }
|
---|
| 403 | else
|
---|
| 404 | {
|
---|
| 405 | candidate->M1 = fOutVertexCode;
|
---|
| 406 | candidate->Position.SetXYZT(fX, fY, fZ, fT);
|
---|
[cf22deb] | 407 | if(fPositionCoefficient != 1.0)
|
---|
| 408 | {
|
---|
| 409 | candidate->Position *= fPositionCoefficient;
|
---|
| 410 | }
|
---|
[d7d2da3] | 411 | }
|
---|
| 412 | if(fInVertexCode < 0)
|
---|
| 413 | {
|
---|
| 414 | candidate->D1 = fInVertexCode;
|
---|
| 415 | }
|
---|
| 416 | else
|
---|
| 417 | {
|
---|
| 418 | candidate->D1 = 1;
|
---|
| 419 | }
|
---|
| 420 |
|
---|
| 421 | allParticleOutputArray->Add(candidate);
|
---|
| 422 |
|
---|
| 423 | if(!pdgParticle) return;
|
---|
| 424 |
|
---|
[b23e468] | 425 | if(fStatus == 1)
|
---|
[d7d2da3] | 426 | {
|
---|
| 427 | stableParticleOutputArray->Add(candidate);
|
---|
| 428 | }
|
---|
| 429 | else if(pdgCode <= 5 || pdgCode == 21 || pdgCode == 15)
|
---|
| 430 | {
|
---|
| 431 | partonOutputArray->Add(candidate);
|
---|
| 432 | }
|
---|
| 433 | }
|
---|
| 434 |
|
---|
| 435 | //---------------------------------------------------------------------------
|
---|
| 436 |
|
---|
[b4786d3] | 437 | void DelphesHepMC2Reader::FinalizeParticles(TObjArray *allParticleOutputArray)
|
---|
[d7d2da3] | 438 | {
|
---|
| 439 | Candidate *candidate;
|
---|
[cc8716b] | 440 | Candidate *candidateDaughter;
|
---|
[77e9ae1] | 441 | map<int, pair<int, int> >::iterator itMotherMap;
|
---|
| 442 | map<int, pair<int, int> >::iterator itDaughterMap;
|
---|
[d7d2da3] | 443 | int i;
|
---|
| 444 |
|
---|
| 445 | for(i = 0; i < allParticleOutputArray->GetEntriesFast(); ++i)
|
---|
| 446 | {
|
---|
| 447 | candidate = static_cast<Candidate *>(allParticleOutputArray->At(i));
|
---|
| 448 |
|
---|
[cc8716b] | 449 |
|
---|
[d7d2da3] | 450 | if(candidate->M1 > 0)
|
---|
| 451 | {
|
---|
| 452 | candidate->M1 = -1;
|
---|
| 453 | candidate->M2 = -1;
|
---|
| 454 | }
|
---|
| 455 | else
|
---|
| 456 | {
|
---|
| 457 | itMotherMap = fMotherMap.find(candidate->M1);
|
---|
| 458 | if(itMotherMap == fMotherMap.end())
|
---|
| 459 | {
|
---|
| 460 | candidate->M1 = -1;
|
---|
| 461 | candidate->M2 = -1;
|
---|
| 462 | }
|
---|
| 463 | else
|
---|
| 464 | {
|
---|
| 465 | candidate->M1 = itMotherMap->second.first;
|
---|
| 466 | candidate->M2 = itMotherMap->second.second;
|
---|
| 467 | }
|
---|
| 468 | }
|
---|
| 469 | if(candidate->D1 > 0)
|
---|
| 470 | {
|
---|
| 471 | candidate->D1 = -1;
|
---|
| 472 | candidate->D2 = -1;
|
---|
| 473 | }
|
---|
| 474 | else
|
---|
| 475 | {
|
---|
| 476 | itDaughterMap = fDaughterMap.find(candidate->D1);
|
---|
| 477 | if(itDaughterMap == fDaughterMap.end())
|
---|
| 478 | {
|
---|
| 479 | candidate->D1 = -1;
|
---|
| 480 | candidate->D2 = -1;
|
---|
[cc8716b] | 481 | const TLorentzVector &decayPosition = candidate->Position;
|
---|
| 482 | candidate->DecayPosition.SetXYZT(decayPosition.X(), decayPosition.Y(), decayPosition.Z(), decayPosition.T());// decay position
|
---|
| 483 | }
|
---|
[d7d2da3] | 484 | else
|
---|
| 485 | {
|
---|
| 486 | candidate->D1 = itDaughterMap->second.first;
|
---|
| 487 | candidate->D2 = itDaughterMap->second.second;
|
---|
[cc8716b] | 488 | candidateDaughter = static_cast<Candidate *>(allParticleOutputArray->At(candidate->D1));
|
---|
| 489 | const TLorentzVector &decayPosition = candidateDaughter->Position;
|
---|
| 490 | candidate->DecayPosition.SetXYZT(decayPosition.X(), decayPosition.Y(), decayPosition.Z(), decayPosition.T());// decay position
|
---|
| 491 |
|
---|
| 492 |
|
---|
[d7d2da3] | 493 | }
|
---|
| 494 | }
|
---|
| 495 | }
|
---|
| 496 | }
|
---|
| 497 |
|
---|
| 498 | //---------------------------------------------------------------------------
|
---|