X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MUON%2FAliMUONVCluster.h;h=b86a5af5f8e45186ffdb97569c9327f066321cc4;hb=a9d45f709c2426764a59fd0a6868f8b477134728;hp=0a7bec11933c1283df3b36bed6de84937e34503b;hpb=3448ba983316b82559efdc150f7871acb9c7bf5e;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONVCluster.h b/MUON/AliMUONVCluster.h index 0a7bec11933..b86a5af5f8e 100644 --- a/MUON/AliMUONVCluster.h +++ b/MUON/AliMUONVCluster.h @@ -15,13 +15,10 @@ #include -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;