]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/AliFMDBoolMap.h
Compilation of AliAnalysisGoodies.cxx only if Root was compiled with XML support
[u/mrichter/AliRoot.git] / FMD / AliFMDBoolMap.h
index 2ceb3d120aafa79409d35b040986f25a0b16d924..c039a8033dae884f8627e4b8a65e4c7d2fe74b7c 100644 (file)
@@ -7,6 +7,11 @@
  * Created Mon Nov  8 12:51:51 2004 by Christian Holm Christensen
  */
 /* $Id$ */
+/** @file    AliFMDBoolMap.h
+    @author  Christian Holm Christensen <cholm@nbi.dk>
+    @date    Sun Mar 26 18:28:59 2006
+    @brief   Per strip boolean map
+*/
 //__________________________________________________________
 // 
 // Map of Bool_t for each FMD strip
@@ -32,10 +37,10 @@ public:
       @param maxRing Number of rings (2)
       @param maxSec  Number of sectors (40)
       @param maxStr  Number of strips (20) */
-  AliFMDBoolMap(size_t maxDet  = kMaxDetectors,
-               size_t maxRing = kMaxRings,
-               size_t maxSec  = kMaxSectors,
-               size_t maxStr  = kMaxStrips);
+  AliFMDBoolMap(UShort_t maxDet  = kMaxDetectors,
+               UShort_t maxRing = kMaxRings,
+               UShort_t maxSec  = kMaxSectors,
+               UShort_t maxStr  = kMaxStrips);
   /** Destructor */
   virtual ~AliFMDBoolMap() { delete [] fData; }
   /** Assignment operator 
@@ -66,9 +71,9 @@ public:
                                   UShort_t sec,
                                   UShort_t str) const;
 protected:
-  size_t  fTotal; // Total number of entries 
+  Int_t  fTotal; // Total number of entries 
   Bool_t* fData;  // [fTotal] The Data
-  ClassDef(AliFMDBoolMap,2) // Map of Bool_t data per strip
+  ClassDef(AliFMDBoolMap,3) // Map of Bool_t data per strip
 };
 
 #endif