Changeset 351 in svn
- Timestamp:
- May 6, 2009, 8:59:32 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/ExRootAnalysis/src/BlockClasses.cc
r318 r351 36 36 37 37 TCompare *TRootGenParticle::fgCompare = 0; 38 TCompare * GenParticle::fgCompare = 0;38 TCompare *TRootC::GenParticle::fgCompare = 0; 39 39 TCompare *TRootElectron::fgCompare = TComparePT<TRootElectron>::Instance(); 40 40 TCompare *TRootMuon::fgCompare = TComparePT<TRootMuon>::Instance(); … … 93 93 } 94 94 95 namespace TRootC { 95 96 GenParticle::GenParticle(const TRootGenParticle& p) : 96 97 PID(p.PID), Status(p.Status), M1(p.M1), M2(p.M2), D1(p.D1), D2(p.D2), Charge(p.Charge), 97 98 T(p.T), X(p.X), Y(p.Y), Z(p.Z), M(p.M) { 98 99 } 100 } 99 101 100 TRootGenParticle::TRootGenParticle( GenParticle* part) :102 TRootGenParticle::TRootGenParticle(TRootC::GenParticle* part) : 101 103 PID(part->PID),Status(part->Status),M1(part->M1),M2(part->M2),D1(part->D1),D2(part->D2), 102 104 T(part->T),X(part->X),Y(part->Y),Z(part->Z),M(part->M){ -
trunk/Utilities/ExRootAnalysis/src/BlockClassesLinkDef.h
r270 r351 42 42 #pragma link C++ class TRootSelectorInfo; 43 43 #pragma link C++ class TRootGenParticle; 44 #pragma link C++ class GenParticle;44 #pragma link C++ class TRootC::GenParticle; 45 45 #pragma link C++ class TRootElectron; 46 46 #pragma link C++ class TRootMuon;
Note:
See TracChangeset
for help on using the changeset viewer.