Fork me on GitHub

Changeset 176 in svn for trunk


Ignore:
Timestamp:
Jan 13, 2009, 12:36:06 AM (16 years ago)
Author:
Xavier Rouby
Message:

TRootTracks

Location:
trunk/Utilities/ExRootAnalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Utilities/ExRootAnalysis/interface/BlockClasses.h

    r73 r176  
    1313 *  present in the data members of the Block TRoot class.
    1414 *
    15  *  $Date: 2008-12-03 16:22:42 $
    16  *  $Revision: 1.7 $
     15 *  $Date: 2009-01-12 23:35:38 $
     16 *  $Revision: 1.8 $
    1717 *
    1818 * 
     
    159159
    160160  void Set(const TLorentzVector& momentum);
    161   void Set(float px,float py,float pz, float e);
     161  void Set(const float px, const float py, const float pz, const float e);
    162162  static TCompare *fgCompare; //!
    163163  const TCompare *GetCompare() const { return fgCompare; }
     
    237237  TRootTracks() {};
    238238  static TCompare *fgCompare; //!
    239 
     239 
     240  float XVertex, YVertex, ZVertex, EtaVertex, PhiVertex; // coordinates of the beginning of the track
     241  float Xouter, Youter, Zouter; // coordinates of the end of the track
    240242  ClassDef(TRootTracks, 1)
    241243};
  • trunk/Utilities/ExRootAnalysis/src/BlockClasses.cc

    r85 r176  
    1111 *  to preserve mother-dautherlinks between particles.
    1212 *
    13  *  $Date: 2008-12-04 12:12:04 $
    14  *  $Revision: 1.5 $
     13 *  $Date: 2009-01-12 23:36:06 $
     14 *  $Revision: 1.6 $
    1515 *
    1616 * 
     
    5050}
    5151
    52 void TRootParticle::Set(float px,float py,float pz, float e) {
     52void TRootParticle::Set(const float px, const float py, const float pz, const float e) {
    5353        TLorentzVector toFill;
    5454        toFill.SetPxPyPzE(px,py,pz,e);
Note: See TracChangeset for help on using the changeset viewer.