Changes in modules/TreeWriter.cc [fe0273c:cab38f6] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/TreeWriter.cc
rfe0273c rcab38f6 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;365 364 366 365 FillParticles(candidate, &entry->Particles); … … 404 403 entry->T = position.T()*1.0E-3/c_light; 405 404 406 // Isolation variables407 408 entry->IsolationVar = candidate->IsolationVar;409 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr ;410 entry->SumPtCharged = candidate->SumPtCharged ;411 entry->SumPtNeutral = candidate->SumPtNeutral ;412 entry->SumPtChargedPU = candidate->SumPtChargedPU ;413 entry->SumPt = candidate->SumPt ;414 415 405 entry->EhadOverEem = candidate->Eem > 0.0 ? candidate->Ehad/candidate->Eem : 999.9; 416 406 … … 452 442 entry->T = position.T()*1.0E-3/c_light; 453 443 454 // Isolation variables455 456 entry->IsolationVar = candidate->IsolationVar;457 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr ;458 entry->SumPtCharged = candidate->SumPtCharged ;459 entry->SumPtNeutral = candidate->SumPtNeutral ;460 entry->SumPtChargedPU = candidate->SumPtChargedPU ;461 entry->SumPt = candidate->SumPt ;462 463 464 444 entry->Charge = candidate->Charge; 465 445 … … 489 469 const TLorentzVector &momentum = candidate->Momentum; 490 470 const TLorentzVector &position = candidate->Position; 471 491 472 492 473 pt = momentum.Pt(); … … 507 488 entry->T = position.T()*1.0E-3/c_light; 508 489 509 // Isolation variables510 511 entry->IsolationVar = candidate->IsolationVar;512 entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr ;513 entry->SumPtCharged = candidate->SumPtCharged ;514 entry->SumPtNeutral = candidate->SumPtNeutral ;515 entry->SumPtChargedPU = candidate->SumPtChargedPU ;516 entry->SumPt = candidate->SumPt ;517 518 490 entry->Charge = candidate->Charge; 519 491 … … 532 504 Double_t ecalEnergy, hcalEnergy; 533 505 const Double_t c_light = 2.99792458E8; 534 Int_t i;535 506 536 507 array->Sort(); … … 561 532 entry->Mass = momentum.M(); 562 533 563 entry->Area = candidate->Area;564 565 534 entry->DeltaEta = candidate->DeltaEta; 566 535 entry->DeltaPhi = candidate->DeltaPhi; 567 536 568 entry->Flavor = candidate->Flavor;569 entry->FlavorAlgo = candidate->FlavorAlgo;570 entry->FlavorPhys = candidate->FlavorPhys;571 572 537 entry->BTag = candidate->BTag; 573 574 entry->BTagAlgo = candidate->BTagAlgo;575 entry->BTagPhys = candidate->BTagPhys;576 577 538 entry->TauTag = candidate->TauTag; 578 539 … … 600 561 entry->MeanSqDeltaR = candidate->MeanSqDeltaR; 601 562 entry->PTD = candidate->PTD; 602 603 //--- Sub-structure variables ---- 604 605 entry->NSubJetsTrimmed = candidate->NSubJetsTrimmed; 606 entry->NSubJetsPruned = candidate->NSubJetsPruned; 607 entry->NSubJetsSoftDropped = candidate->NSubJetsSoftDropped; 608 609 for(i = 0; i < 5; i++) 610 { 611 entry->FracPt[i] = candidate -> FracPt[i]; 612 entry->Tau[i] = candidate -> Tau[i]; 613 entry->TrimmedP4[i] = candidate -> TrimmedP4[i]; 614 entry->PrunedP4[i] = candidate -> PrunedP4[i]; 615 entry->SoftDroppedP4[i] = candidate -> SoftDroppedP4[i]; 616 } 617 563 entry->FracPt[0] = candidate->FracPt[0]; 564 entry->FracPt[1] = candidate->FracPt[1]; 565 entry->FracPt[2] = candidate->FracPt[2]; 566 entry->FracPt[3] = candidate->FracPt[3]; 567 entry->FracPt[4] = candidate->FracPt[4]; 568 569 //--- N-subjettiness variables ---- 570 571 entry->Tau1 = candidate->Tau[0]; 572 entry->Tau2 = candidate->Tau[1]; 573 entry->Tau3 = candidate->Tau[2]; 574 entry->Tau4 = candidate->Tau[3]; 575 entry->Tau5 = candidate->Tau[4]; 576 618 577 FillParticles(candidate, &entry->Particles); 619 578 }
Note:
See TracChangeset
for help on using the changeset viewer.