From c50e4c924c336c266407f12e094c0d92840d7f5e Mon Sep 17 00:00:00 2001 From: alla Date: Thu, 15 Feb 2001 17:47:38 +0000 Subject: [PATCH] methods for private members --- FMD/AliFMDhit.h | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/FMD/AliFMDhit.h b/FMD/AliFMDhit.h index 938eef12d41..c74ea947ff3 100644 --- a/FMD/AliFMDhit.h +++ b/FMD/AliFMDhit.h @@ -84,8 +84,21 @@ public: AliFMDhit() {} AliFMDhit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits); virtual ~AliFMDhit() {} - + Int_t Volume(); + Float_t Particle(); + Float_t Edep(); + Float_t Px(); + Float_t Py(); + Float_t Pz(); + Float_t Time(); + ClassDef(AliFMDhit,1) //Hits for detector FMD }; - +inline Int_t AliFMDhit::Volume(){return fVolume;} +inline Float_t AliFMDhit::Particle(){return fParticle;} +inline Float_t AliFMDhit::Edep(){return fEdep;} +inline Float_t AliFMDhit::Px(){return fPx;} +inline Float_t AliFMDhit::Py(){return fPy;} +inline Float_t AliFMDhit::Pz(){return fPz;} +inline Float_t AliFMDhit::Time(){return fTime;} #endif -- 2.31.1