Changeset 9040259 in git for modules/TreeWriter.cc
- Timestamp:
- Jun 17, 2015, 4:36:20 PM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- a446115
- Parents:
- edf10ba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/TreeWriter.cc
redf10ba r9040259 291 291 entry->ZOuter = position.Z(); 292 292 entry->TOuter = position.T()*1.0E-3/c_light; 293 293 294 294 entry->Dxy = candidate->Dxy; 295 295 entry->SDxy = candidate->SDxy ; … … 297 297 entry->Yd = candidate->Yd; 298 298 entry->Zd = candidate->Zd; 299 299 300 300 const TLorentzVector &momentum = candidate->Momentum; 301 301 … … 362 362 363 363 entry->T = position.T()*1.0E-3/c_light; 364 entry->Ntimes = candidate->Ntimes; 364 entry->Ntimes = candidate->Ntimes; 365 365 366 366 FillParticles(candidate, &entry->Particles); … … 405 405 406 406 // Isolation variables 407 407 408 408 entry->IsolationVar = candidate->IsolationVar; 409 409 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr ; … … 453 453 454 454 // Isolation variables 455 455 456 456 entry->IsolationVar = candidate->IsolationVar; 457 457 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr ; … … 507 507 508 508 entry->T = position.T()*1.0E-3/c_light; 509 509 510 510 // Isolation variables 511 511 512 512 entry->IsolationVar = candidate->IsolationVar; 513 513 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr ; … … 568 568 569 569 entry->BTag = candidate->BTag; 570 571 entry->BTagAlgo = candidate->BTagAlgo; 572 entry->BTagDefault = candidate->BTagDefault; 573 entry->BTagPhysics = candidate->BTagPhysics; 574 entry->BTagNearest2 = candidate->BTagNearest2; 575 entry->BTagNearest3 = candidate->BTagNearest3; 576 entry->BTagHeaviest = candidate->BTagHeaviest; 577 entry->BTagHighestPt = candidate->BTagHighestPt; 578 579 entry->FlavorAlgo = candidate->FlavorAlgo; 580 entry->FlavorDefault = candidate->FlavorDefault; 581 entry->FlavorPhysics = candidate->FlavorPhysics; 582 entry->FlavorNearest2 = candidate->FlavorNearest2; 583 entry->FlavorNearest3 = candidate->FlavorNearest3; 584 entry->FlavorHeaviest = candidate->FlavorHeaviest; 585 entry->FlavorHighestPt = candidate->FlavorHighestPt; 586 570 587 entry->TauTag = candidate->TauTag; 571 588 … … 593 610 entry->MeanSqDeltaR = candidate->MeanSqDeltaR; 594 611 entry->PTD = candidate->PTD; 595 612 596 613 //--- Sub-structure variables ---- 597 598 entry->NSubJetsTrimmed 599 entry->NSubJetsPruned = candidate->NSubJetsPruned;614 615 entry->NSubJetsTrimmed = candidate->NSubJetsTrimmed; 616 entry->NSubJetsPruned = candidate->NSubJetsPruned; 600 617 entry->NSubJetsSoftDropped = candidate->NSubJetsSoftDropped; 601 618 602 619 for(i = 0; i < 5; i++) 603 620 { 604 entry->FracPt[i] 605 entry->Tau[i] 606 entry->TrimmedP4[i] 607 entry->PrunedP4[i] 621 entry->FracPt[i] = candidate -> FracPt[i]; 622 entry->Tau[i] = candidate -> Tau[i]; 623 entry->TrimmedP4[i] = candidate -> TrimmedP4[i]; 624 entry->PrunedP4[i] = candidate -> PrunedP4[i]; 608 625 entry->SoftDroppedP4[i] = candidate -> SoftDroppedP4[i]; 609 626 } 610 627 611 628 FillParticles(candidate, &entry->Particles); 612 629 }
Note:
See TracChangeset
for help on using the changeset viewer.