]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSClusterFinderV2.h
added new enum that describes the type of analysis, passed to all analysis classes
[u/mrichter/AliRoot.git] / ITS / AliITSClusterFinderV2.h
index a41f9b00b97f30aa582c7f9cfc51f93fb4f4187d..f669cd339408ebd923f8af710b505cea3c9aba83 100644 (file)
@@ -11,7 +11,6 @@
 
 class AliITSRecPoint;
 class AliRawReader;
-class AliITSgeom;
 
 class AliITSClusterFinderV2 : public AliITSClusterFinder {
 public:
@@ -41,10 +40,11 @@ protected:
   };
   class AliBin {
   public:
-    AliBin() {fIndex=0; fQ=0; fMask=0xFFFFFFFE;}
+    AliBin():fIndex(0),fMask(0xFFFFFFFE),fQ(0){}
     void SetIndex(UInt_t idx) {fIndex=idx;}
     void SetQ(UShort_t q)  {fQ=q;}
     void SetMask(UInt_t m) {fMask=m;}
+    void Reset() {fIndex=0; fMask=0xFFFFFFFE; fQ=0;}
 
     void Use() {fMask&=0xFFFFFFFE;}
     Bool_t IsNotUsed() const {return (fMask&1);}