]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVCluster.h
adding centrality dimension to cluster energy histo
[u/mrichter/AliRoot.git] / MUON / AliMUONVCluster.h
index 0c05e68583e3b94bdbc23e965d7e54f5e8d03d66..6107810e6eb44896ecbd22b144f26c2b4fa2ce76 100644 (file)
@@ -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;