X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PMD%2FAliPMDrechit.h;h=2eac763a5b4adbb3da42ba20a9fd1a1b474932de;hb=920e13db6574021d4f005b907fc875e7e3d88240;hp=266b8f6be544de4814fba447f23816a74feb4b34;hpb=e4d0b51623f0199b9c911ec84587d2fd221c0647;p=u%2Fmrichter%2FAliRoot.git diff --git a/PMD/AliPMDrechit.h b/PMD/AliPMDrechit.h index 266b8f6be54..2eac763a5b4 100644 --- a/PMD/AliPMDrechit.h +++ b/PMD/AliPMDrechit.h @@ -18,7 +18,7 @@ class AliPMDrechit : public TObject { public: AliPMDrechit(); - AliPMDrechit(Int_t cellx, Int_t celly); + AliPMDrechit(Int_t cellx, Int_t celly, Int_t celltr, Int_t cellpid); AliPMDrechit(AliPMDrechit *pmdrechit); AliPMDrechit (const AliPMDrechit &alipmdrechit); // copy constructor AliPMDrechit &operator=(const AliPMDrechit &alipmdrechit); // assignment op @@ -27,12 +27,16 @@ class AliPMDrechit : public TObject Int_t GetCellX() const; Int_t GetCellY() const; + Int_t GetCellTrack() const; + Int_t GetCellPid() const; protected: Int_t fXcell; // x-position of the cell Int_t fYcell; // y-position of the cell + Int_t fTrcell; // track no of the cell + Int_t fPidcell; // track pid of the cell - ClassDef(AliPMDrechit,2) // To keep cell hit information + ClassDef(AliPMDrechit,3) // To keep cell hit information }; #endif