]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MFT/AliMFTCluster.h
Updated MFT geometry and cluster information
[u/mrichter/AliRoot.git] / MFT / AliMFTCluster.h
index 7015349ad5901411eacb7d584cc0aad4973a5d4b..f01d3488f7714383e6656c6c79ce313daae88b8e 100644 (file)
@@ -86,6 +86,9 @@ public:
 
   Double_t GetDistanceFromPixel(AliMFTDigit *pixel);
 
+  void SetClusterFront(Bool_t clusterFront) { if(fIsClusterEditable) fIsClusterFront = clusterFront; }
+  Bool_t IsClusterFront() { return fIsClusterFront; }
+
   AliMUONRawCluster* CreateMUONCluster();
   
 private:
@@ -108,7 +111,7 @@ private:
   
   TClonesArray *fDigitsInCluster;   //! (Temporary) Array of the digits composing the cluster
 
-  Bool_t fIsClusterEditable;
+  Bool_t fIsClusterEditable, fIsClusterFront;
 
   ClassDef(AliMFTCluster, 1)