00001
00002
00003
00004
00005
00007
00008
00009
00010
00011
00013 #ifndef StPeCGeant_h
00014 #define StPeCGeant_h
00015 #include "Rtypes.h"
00016 #include "TObject.h"
00017 #include "TClonesArray.h"
00018 #ifndef __CINT__
00019 #include "PhysicalConstants.h"
00020 #include "StEventTypes.h"
00021 #endif
00022 #include "StPeCParticle.h"
00023
00024 class St_g2t_track;
00025
00026 class StPeCGeant : public TObject {
00027
00028 public:
00029
00030 StPeCGeant();
00031 virtual ~StPeCGeant();
00032
00033 void clear ( ) ;
00034 #ifndef __CINT__
00035 Int_t fill ( TDataSet* geant ) ;
00036 #endif
00037
00038 Float_t gPt ;
00039 Float_t gPz ;
00040 Float_t gEta ;
00041 Float_t gMass ;
00042 Float_t gY ;
00043 Float_t gPsi ;
00044 Float_t gZVertex ;
00045
00046 Int_t nPart ;
00047 TClonesArray *pPart ;
00048
00049 ClassDef(StPeCGeant,1)
00050 };
00051
00052 #endif
00053
00054
00055
00056
00057