X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=FMD%2FAliFMDUShortMap.h;h=0c10d6edd311bc4a7fbde0c0cb796aac2bdd4675;hb=5effd3c62205f478346de6550b28c2cdec9337f2;hp=74add96c67c3ba3d2f89f9f6e779c031ab61f89e;hpb=c2fc12580f7bb903a1f061ae3d60882098e8a988;p=u%2Fmrichter%2FAliRoot.git diff --git a/FMD/AliFMDUShortMap.h b/FMD/AliFMDUShortMap.h index 74add96c67c..0c10d6edd31 100644 --- a/FMD/AliFMDUShortMap.h +++ b/FMD/AliFMDUShortMap.h @@ -10,6 +10,9 @@ @date Mon Mar 27 12:48:18 2006 @brief Per strip of unisgned shorts (16 bit) data */ +// Map of an integer per strip +// This class stores one short unsigned integer (16 bits) per strip in +// the FMD detectors. #ifndef ALIFMDMAP_H # include "AliFMDMap.h" #endif @@ -29,10 +32,10 @@ public: @param maxRing Number of rings (2) @param maxSec Number of sectors (40) @param maxStr Number of strips (20) */ - AliFMDUShortMap(size_t maxDet = kMaxDetectors, - size_t maxRing= kMaxRings, - size_t maxSec = kMaxSectors, - size_t maxStr = kMaxStrips); + AliFMDUShortMap(UShort_t maxDet = kMaxDetectors, + UShort_t maxRing= kMaxRings, + UShort_t maxSec = kMaxSectors, + UShort_t maxStr = kMaxStrips); /** Destructor */ virtual ~AliFMDUShortMap() { delete [] fData; } /** Assignment operator @@ -63,9 +66,9 @@ public: UShort_t sector, UShort_t strip) const; protected: - size_t fTotal; // Total number of entries + Int_t fTotal; // Total number of entries UShort_t* fData; // [fTotal] The data - ClassDef(AliFMDUShortMap, 2) // Cache of edep,hit information per strip + ClassDef(AliFMDUShortMap, 3) // Cache of edep,hit information per strip }; #endif