Changeset 176 in svn
- Timestamp:
- Jan 13, 2009, 12:36:06 AM (16 years ago)
- Location:
- trunk/Utilities/ExRootAnalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/ExRootAnalysis/interface/BlockClasses.h
r73 r176 13 13 * present in the data members of the Block TRoot class. 14 14 * 15 * $Date: 200 8-12-03 16:22:42$16 * $Revision: 1. 7$15 * $Date: 2009-01-12 23:35:38 $ 16 * $Revision: 1.8 $ 17 17 * 18 18 * … … 159 159 160 160 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); 162 162 static TCompare *fgCompare; //! 163 163 const TCompare *GetCompare() const { return fgCompare; } … … 237 237 TRootTracks() {}; 238 238 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 240 242 ClassDef(TRootTracks, 1) 241 243 }; -
trunk/Utilities/ExRootAnalysis/src/BlockClasses.cc
r85 r176 11 11 * to preserve mother-dautherlinks between particles. 12 12 * 13 * $Date: 200 8-12-04 12:12:04$14 * $Revision: 1. 5$13 * $Date: 2009-01-12 23:36:06 $ 14 * $Revision: 1.6 $ 15 15 * 16 16 * … … 50 50 } 51 51 52 void TRootParticle::Set( float px,float py,float pz,float e) {52 void TRootParticle::Set(const float px, const float py, const float pz, const float e) { 53 53 TLorentzVector toFill; 54 54 toFill.SetPxPyPzE(px,py,pz,e);
Note:
See TracChangeset
for help on using the changeset viewer.