X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MUON%2FAliMUONVCluster.h;h=6107810e6eb44896ecbd22b144f26c2b4fa2ce76;hb=21c2a03ef830b1c34b5ea949e3498df26a3e5c66;hp=0c05e68583e3b94bdbc23e965d7e54f5e8d03d66;hpb=aa45afd147c515bdd6a62db7f19bb984319bccc7;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONVCluster.h b/MUON/AliMUONVCluster.h index 0c05e68583e..6107810e6eb 100644 --- a/MUON/AliMUONVCluster.h +++ b/MUON/AliMUONVCluster.h @@ -71,12 +71,19 @@ class AliMUONVCluster : public TObject { virtual Int_t GetNDigits() const = 0; /// Return Id of digits i virtual UInt_t GetDigitId(Int_t i) const = 0; + /// Return the array of digits'id + virtual const UInt_t* GetDigitsId() const {return 0x0;} /// Set chi2 of cluster virtual void SetChi2(Double_t chi2) = 0; /// Return chi2 of cluster virtual Double_t GetChi2() const = 0; + /// Set the corresponding MC track number + virtual void SetMCLabel(Int_t label) = 0; + /// Return the corresponding MC track number + virtual Int_t GetMCLabel() const = 0; + virtual void Print(Option_t *option = "") const;