- Timestamp:
- Mar 10, 2009, 11:58:38 PM (16 years ago)
- Location:
- trunk/Utilities/ExRootAnalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/ExRootAnalysis/interface/BlockClasses.h
r310 r318 176 176 177 177 //-------------------------------------------------------------------------- 178 178 class TRootGenParticle; 179 179 class GenParticle: public TRootParticle { 180 180 181 181 public: 182 182 GenParticle() {}; 183 GenParticle(const TRootGenParticle& p); 183 184 int PID; // particle HEP ID number [RawHepEventParticle::pid()] 184 185 int Status; // particle status [RawHepEventParticle::status()] -
trunk/Utilities/ExRootAnalysis/src/BlockClasses.cc
r290 r318 91 91 Px = PT*cos(Phi); 92 92 Py = PT*sin(Phi); 93 } 94 95 GenParticle::GenParticle(const TRootGenParticle& p) : 96 PID(p.PID), Status(p.Status), M1(p.M1), M2(p.M2), D1(p.D1), D2(p.D2), Charge(p.Charge), 97 T(p.T), X(p.X), Y(p.Y), Z(p.Z), M(p.M) { 93 98 } 94 99
Note:
See TracChangeset
for help on using the changeset viewer.