]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVCluster.h
Adding a line to be able to generate core dumps online
[u/mrichter/AliRoot.git] / MUON / AliMUONVCluster.h
index 0a7bec11933c1283df3b36bed6de84937e34503b..b86a5af5f8e45186ffdb97569c9327f066321cc4 100644 (file)
 
 #include <TObject.h>
 
-class AliESDMuonCluster;
-
 class AliMUONVCluster : public TObject {
  public:
   AliMUONVCluster(); // Constructor
   AliMUONVCluster(Int_t chamberId, Int_t detElemId, Int_t clusterIndex);
-  AliMUONVCluster(const AliESDMuonCluster& cluster);
   virtual ~AliMUONVCluster(); // Destructor
   
            /// Clear method (used by TClonesArray)
@@ -80,6 +77,11 @@ class AliMUONVCluster : public TObject {
            /// 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;