Changeset 4006893 in git
- Timestamp:
- Jun 1, 2021, 8:10:27 PM (3 years ago)
- Branches:
- master
- Children:
- fc6bce2
- Parents:
- 06630ef
- Location:
- classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesHepMC3Reader.cc
r06630ef r4006893 56 56 DelphesHepMC3Reader::DelphesHepMC3Reader() : 57 57 fInputFile(0), fBuffer(0), fPDG(0), 58 fVertexCounter(- 1), fParticleCounter(-1)58 fVertexCounter(-2), fParticleCounter(-1) 59 59 { 60 60 fBuffer = new char[kBufferSize]; … … 81 81 void DelphesHepMC3Reader::Clear() 82 82 { 83 fWeight .clear();83 fWeights.clear(); 84 84 fMomentumCoefficient = 1.0; 85 85 fPositionCoefficient = 1.0; 86 fVertexCounter = - 1;86 fVertexCounter = -2; 87 87 fParticleCounter = -1; 88 fVertexMap.clear(); 88 fVertices.clear(); 89 fParticles.clear(); 90 fInVertexMap.clear(); 91 fOutVertexMap.clear(); 92 fMotherMap.clear(); 89 93 fDaughterMap.clear(); 90 94 } … … 94 98 bool DelphesHepMC3Reader::EventReady() 95 99 { 96 return (f ParticleCounter == 0);100 return (fVertexCounter == -1) && (fParticleCounter == 0); 97 101 } 98 102 … … 119 123 Clear(); 120 124 121 fX = 0.0;122 fY = 0.0;123 fZ = 0.0;124 fT = 0.0;125 126 125 rc = bufferStream.ReadInt(fEventNumber) 127 126 && bufferStream.ReadInt(fVertexCounter) … … 168 167 while(bufferStream.ReadDbl(weight)) 169 168 { 170 fWeight .push_back(weight);169 fWeights.push_back(weight); 171 170 } 172 171 } … … 257 256 else if(key == 'V') 258 257 { 258 fParticles.clear(); 259 259 260 fX = 0.0; 260 261 fY = 0.0; … … 262 263 fT = 0.0; 263 264 264 fM1 = 0;265 fM2 = 0;266 267 265 rc = bufferStream.ReadInt(fVertexCode) 268 266 && bufferStream.ReadInt(fVertexStatus); … … 286 284 while(bufferStream.ReadInt(code)) 287 285 { 288 if(code < fM1 || fM1 == 0) fM1 = code; 289 if(code > fM2) fM2 = code; 290 fVertexMap[code] = fVertexCode; 291 } 292 293 if(fM1 == fM2) fM2 = 0; 286 fParticles.push_back(code); 287 bufferStream.FindChr(','); 288 } 294 289 295 290 if(bufferStream.FindChr('@')) … … 307 302 } 308 303 } 304 305 AnalyzeVertex(factory, fVertexCode); 309 306 } 310 307 else if(key == 'P' && fParticleCounter > 0) … … 329 326 } 330 327 331 itDaughterMap = fDaughterMap.find(fOutVertexCode);332 if(itDaughterMap == fDaughterMap.end())333 {334 fDaughterMap[fOutVertexCode] = make_pair(fParticleCode, fParticleCode);335 }336 else337 {338 itDaughterMap->second.second = fParticleCode;339 }340 341 328 AnalyzeParticle(factory, allParticleOutputArray, 342 329 stableParticleOutputArray, partonOutputArray); … … 363 350 element->ProcessID = fProcessID; 364 351 element->MPI = fMPI; 365 element->Weight = fWeight .size() > 0 ? fWeight[0] : 1.0;352 element->Weight = fWeights.size() > 0 ? fWeights[0] : 1.0; 366 353 element->CrossSection = fCrossSection; 367 354 element->CrossSectionError = fCrossSectionError; … … 389 376 vector<double>::const_iterator itWeight; 390 377 391 for(itWeight = fWeight .begin(); itWeight != fWeight.end(); ++itWeight)378 for(itWeight = fWeights.begin(); itWeight != fWeights.end(); ++itWeight) 392 379 { 393 380 element = static_cast<Weight *>(branch->NewEntry()); 394 381 395 382 element->Weight = *itWeight; 383 } 384 } 385 386 //--------------------------------------------------------------------------- 387 388 void DelphesHepMC3Reader::AnalyzeVertex(DelphesFactory *factory, int code, Candidate *candidate) 389 { 390 int index; 391 TLorentzVector *position; 392 TObjArray *array; 393 vector<int>::iterator itParticle; 394 map<int, int>::iterator itVertexMap; 395 396 itVertexMap = fOutVertexMap.find(code); 397 if(itVertexMap == fOutVertexMap.end()) 398 { 399 --fVertexCounter; 400 401 index = fVertices.size(); 402 fOutVertexMap[code] = index; 403 if(candidate && code > 0) fInVertexMap[code] = index; 404 405 position = factory->New<TLorentzVector>(); 406 array = factory->NewArray(); 407 position->SetXYZT(0.0, 0.0, 0.0, 0.0); 408 array->Clear(); 409 fVertices.push_back(make_pair(position, array)); 410 } 411 else 412 { 413 index = itVertexMap->second; 414 position = fVertices[index].first; 415 array = fVertices[index].second; 416 } 417 418 if(candidate) 419 { 420 array->Add(candidate); 421 } 422 else 423 { 424 position->SetXYZT(fX, fY, fZ, fT); 425 for(itParticle = fParticles.begin(); itParticle != fParticles.end(); ++itParticle) 426 { 427 fInVertexMap[*itParticle] = index; 428 } 396 429 } 397 430 } … … 425 458 } 426 459 427 candidate->Position.SetXYZT(fX, fY, fZ, fT); 428 if(fPositionCoefficient != 1.0) 429 { 430 candidate->Position *= fPositionCoefficient; 431 } 432 433 candidate->D1 = -1; 434 candidate->D2 = -1; 435 436 if(fOutVertexCode < 0) 437 { 438 candidate->M1 = fM1 - 1; 439 candidate->M2 = fM2 - 1; 440 } 441 else 442 { 443 candidate->M1 = fOutVertexCode - 1; 444 candidate->M2 = -1; 445 } 446 447 allParticleOutputArray->Add(candidate); 460 candidate->D1 = fParticleCode; 461 462 AnalyzeVertex(factory, fOutVertexCode, candidate); 448 463 449 464 if(!pdgParticle) return; … … 463 478 void DelphesHepMC3Reader::FinalizeParticles(TObjArray *allParticleOutputArray) 464 479 { 480 TLorentzVector *position; 481 TObjArray *array; 465 482 Candidate *candidate; 466 483 map<int, int >::iterator itVertexMap; 484 map<int, pair<int, int> >::iterator itMotherMap; 467 485 map<int, pair<int, int> >::iterator itDaughterMap; 468 int i, index; 486 int i, j, code, counter; 487 488 counter = 0; 489 for(i = 0; i < fVertices.size(); ++i) 490 { 491 position = fVertices[i].first; 492 array = fVertices[i].second; 493 494 for(j = 0; j < array->GetEntriesFast(); ++j) 495 { 496 candidate = static_cast<Candidate *>(array->At(j)); 497 498 candidate->Position = *position; 499 if(fPositionCoefficient != 1.0) 500 { 501 candidate->Position *= fPositionCoefficient; 502 } 503 504 candidate->M1 = i; 505 506 itDaughterMap = fDaughterMap.find(i); 507 if(itDaughterMap == fDaughterMap.end()) 508 { 509 fDaughterMap[i] = make_pair(counter, counter); 510 } 511 else 512 { 513 itDaughterMap->second.second = counter; 514 } 515 516 code = candidate->D1; 517 518 itVertexMap = fInVertexMap.find(code); 519 if(itVertexMap == fInVertexMap.end()) 520 { 521 candidate->D1 = -1; 522 } 523 else 524 { 525 code = itVertexMap->second; 526 527 candidate->D1 = code; 528 529 itMotherMap = fMotherMap.find(code); 530 if(itMotherMap == fMotherMap.end()) 531 { 532 fMotherMap[code] = make_pair(counter, -1); 533 } 534 else 535 { 536 itMotherMap->second.second = counter; 537 } 538 } 539 540 allParticleOutputArray->Add(candidate); 541 542 ++counter; 543 } 544 } 469 545 470 546 for(i = 0; i < allParticleOutputArray->GetEntriesFast(); ++i) … … 472 548 candidate = static_cast<Candidate *>(allParticleOutputArray->At(i)); 473 549 474 index = i + 1; 475 476 itVertexMap = fVertexMap.find(index); 477 if(itVertexMap != fVertexMap.end()) 478 { 479 index = itVertexMap->second; 480 } 481 482 itDaughterMap = fDaughterMap.find(index); 483 if(itDaughterMap == fDaughterMap.end()) 550 itMotherMap = fMotherMap.find(candidate->M1); 551 if(itMotherMap == fMotherMap.end()) 552 { 553 candidate->M1 = -1; 554 candidate->M2 = -1; 555 } 556 else 557 { 558 candidate->M1 = itMotherMap->second.first; 559 candidate->M2 = itMotherMap->second.second; 560 } 561 562 if(candidate->D1 < 0) 484 563 { 485 564 candidate->D1 = -1; … … 488 567 else 489 568 { 490 candidate->D1 = itDaughterMap->second.first - 1; 491 candidate->D2 = itDaughterMap->second.second - 1; 492 } 493 } 494 } 495 496 //--------------------------------------------------------------------------- 569 itDaughterMap = fDaughterMap.find(candidate->D1); 570 if(itDaughterMap == fDaughterMap.end()) 571 { 572 candidate->D1 = -1; 573 candidate->D2 = -1; 574 } 575 else 576 { 577 candidate->D1 = itDaughterMap->second.first; 578 candidate->D2 = itDaughterMap->second.second; 579 } 580 } 581 } 582 } 583 584 //--------------------------------------------------------------------------- -
classes/DelphesHepMC3Reader.h
r06630ef r4006893 36 36 class TStopwatch; 37 37 class TDatabasePDG; 38 class TLorentzVector; 38 39 class ExRootTreeBranch; 39 40 class DelphesFactory; 41 class Candidate; 40 42 41 43 class DelphesHepMC3Reader … … 61 63 62 64 private: 65 void AnalyzeVertex(DelphesFactory *factory, int code, Candidate *candidate = 0); 66 63 67 void AnalyzeParticle(DelphesFactory *factory, 64 68 TObjArray *allParticleOutputArray, … … 79 83 double fMomentumCoefficient, fPositionCoefficient; 80 84 81 std::vector<double> fWeight ;85 std::vector<double> fWeights; 82 86 83 87 double fCrossSection, fCrossSectionError; … … 92 96 double fPx, fPy, fPz, fE, fMass; 93 97 94 int fM1, fM2; 98 std::vector<std::pair<TLorentzVector *, TObjArray *> > fVertices; 99 std::vector<int> fParticles; 95 100 96 std::map<int, int> fVertexMap; 101 std::map<int, int> fInVertexMap; 102 std::map<int, int> fOutVertexMap; 103 104 std::map<int, std::pair<int, int> > fMotherMap; 97 105 std::map<int, std::pair<int, int> > fDaughterMap; 98 106 };
Note:
See TracChangeset
for help on using the changeset viewer.