Changeset 666d795 in git
- Timestamp:
- Mar 16, 2015, 2:53:18 PM (10 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- de6d698
- Parents:
- 1f1f858
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.h
r1f1f858 r666d795 348 348 Float_t FracPt[5]; // (sum pt of constituents within a ring 0.1*i < DeltaR < 0.1*(i+1))/(sum pt of constituents) 349 349 350 Float_t Tau1; // 1-subjettiness 351 Float_t Tau2; // 2-subjettiness 352 Float_t Tau3; // 3-subjettiness 353 Float_t Tau4; // 4-subjettiness 354 Float_t Tau5; // 5-subjettiness 355 350 Float_t Tau[5]; // N-subjettiness 351 356 352 TRefArray Constituents; // references to constituents 357 353 TRefArray Particles; // references to generated particles … … 363 359 TLorentzVector Area; 364 360 365 ClassDef(Jet, 2)361 ClassDef(Jet, 3) 366 362 }; 367 363 -
modules/TreeWriter.cc
r1f1f858 r666d795 600 600 //--- N-subjettiness variables ---- 601 601 602 entry->Tau 1= candidate->Tau[0];603 entry->Tau 2= candidate->Tau[1];604 entry->Tau 3= candidate->Tau[2];605 entry->Tau 4= candidate->Tau[3];606 entry->Tau 5= candidate->Tau[4];602 entry->Tau[0] = candidate->Tau[0]; 603 entry->Tau[1] = candidate->Tau[1]; 604 entry->Tau[2] = candidate->Tau[2]; 605 entry->Tau[3] = candidate->Tau[3]; 606 entry->Tau[4] = candidate->Tau[4]; 607 607 608 608 FillParticles(candidate, &entry->Particles);
Note:
See TracChangeset
for help on using the changeset viewer.