]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliESDMuonCluster.h
Only one Check method needs to be implemented by detectors that will be valid fo...
[u/mrichter/AliRoot.git] / STEER / AliESDMuonCluster.h
index 4a423120de90a003e72735cd0c06c64f5daa0609..e235b4150aac9aff860df324061a1184c58752b1 100644 (file)
@@ -68,6 +68,11 @@ public:
   void          AddPad(const AliESDMuonPad &pad);
   Bool_t        PadsStored() const;
   
+  /// Set the corresponding MC track number
+  void  SetLabel(Int_t label) {fLabel = label;}
+  /// Return the corresponding MC track number
+  Int_t GetLabel() const {return fLabel;}
+  
   void     Print(Option_t */*option*/ = "") const;
   
   
@@ -79,8 +84,10 @@ protected:
   
   mutable TClonesArray* fPads; ///< Array of pads attached to the cluster
   
+  Int_t fLabel; ///< point to the corresponding MC track
+  
   
-  ClassDef(AliESDMuonCluster, 2) // MUON ESD cluster class
+  ClassDef(AliESDMuonCluster, 3) // MUON ESD cluster class
 };
 
 #endif