]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONPreClusterFinder.h
Corrected printout
[u/mrichter/AliRoot.git] / MUON / AliMUONPreClusterFinder.h
index df17032704d98046292210c55dfda60a98106fbc..06823bc465dab76a766c7cc82a8a424d6d79d185 100644 (file)
@@ -18,6 +18,9 @@
 #ifndef ALI_MP_AREA_H
 #  include "AliMpArea.h"
 #endif
+#ifndef ROOT_TClonesArray
+#  include <TClonesArray.h>
+#endif
 
 class TStopwatch;
 class AliMUONPad;
@@ -48,16 +51,17 @@ private:
   
   AliMUONPad* GetNextPad(Int_t cathode) const;
 
+  /// Whether we should stop working...
   virtual Bool_t ShouldAbort() const { return fShouldAbort; }
   
 private:
-  TClonesArray* fClusters; //!< the clusters we've found (owner)
+  TClonesArray fClusters; //!< the clusters we've found (owner)
   TClonesArray** fPads; //!< the pads corresponding to the digits (not owner)
   Int_t fDetElemId; //!< which DE we're considering
   AliMpArea fArea; //!< area into which to consider pads to *start* a cluster
   Bool_t fShouldAbort; //!< to indicate clustering should stop right now
   
-  ClassDef(AliMUONPreClusterFinder,3) // A basic pre-cluster finder
+  ClassDef(AliMUONPreClusterFinder,4) // A basic pre-cluster finder
 };
 
 #endif