]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ANALYSIS/AliClusterMap.h
fix for the corrupt data
[u/mrichter/AliRoot.git] / ANALYSIS / AliClusterMap.h
index f7d8774afe014c261249a92f8bab303a49bb956a..e382b46f6e3d4f3d6f46455876180019c58bb837 100644 (file)
@@ -1,14 +1,11 @@
 #ifndef ALICLUSTERMAP_H
 #define ALICLUSTERMAP_H
-//_________________________________________________
-///////////////////////////////////////////////////
+
+///////////////////////////////////////////////////////////////////////////
 //
 // class AliClusterMap
-//
 // class that describes cluster occupation at TPC
 // Each padraw has a corresponding bit in fPadRawMap
-// 
-//
 // more info: http://aliweb.cern.ch/people/skowron/analyzer/index.html
 // Piotr.Skowronski@cern.ch
 //
@@ -31,11 +28,12 @@ class AliClusterMap: public TObject
    virtual ~AliClusterMap(){}
    Float_t GetOverlapFactor(const AliClusterMap& clmap) const;
    Bool_t  HasClAtPadRow(Int_t i) const { return fPadRawMap.TestBitNumber(i);}
+   void    Print(const Option_t * opt) const {TObject::Print(opt);}
    void    Print() const;
   protected:
   private:
    TBits    fPadRawMap;//bit vector of length 150 correspondind to total number of padraws in TPC
-   static const Int_t fNPadRows;
+   static const Int_t fgkNPadRows; // Number of pad rows
    ClassDef(AliClusterMap,1)
 };