Fork me on GitHub

Changeset 666d795 in git


Ignore:
Timestamp:
Mar 16, 2015, 2:53:18 PM (10 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
de6d698
Parents:
1f1f858
Message:

replaced N-sub by array in Jet class (same as in Candidate class)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.h

    r1f1f858 r666d795  
    348348  Float_t  FracPt[5]; // (sum pt of constituents within a ring 0.1*i < DeltaR < 0.1*(i+1))/(sum pt of constituents)
    349349
    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 
    356352  TRefArray Constituents; // references to constituents
    357353  TRefArray Particles; // references to generated particles
     
    363359  TLorentzVector Area;
    364360
    365   ClassDef(Jet, 2)
     361  ClassDef(Jet, 3)
    366362};
    367363
  • modules/TreeWriter.cc

    r1f1f858 r666d795  
    600600    //--- N-subjettiness variables ----
    601601   
    602     entry->Tau1 = candidate->Tau[0];
    603     entry->Tau2 = candidate->Tau[1];
    604     entry->Tau3 = candidate->Tau[2];
    605     entry->Tau4 = candidate->Tau[3];
    606     entry->Tau5 = 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];
    607607   
    608608    FillParticles(candidate, &entry->Particles);
Note: See TracChangeset for help on using the changeset viewer.