X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=ITS%2FAliITSRawData.h;h=f37da07e3371be9ccd261531ebfad93895e14635;hb=943fb20f68d979109497911102eb7444cfbeb6d6;hp=c07541cbe201ba64faa8deafd56cc6458d8823cd;hpb=b0f5e3fcf84ecedb50df35ebe629b44bafc15bc0;p=u%2Fmrichter%2FAliRoot.git diff --git a/ITS/AliITSRawData.h b/ITS/AliITSRawData.h index c07541cbe20..f37da07e337 100644 --- a/ITS/AliITSRawData.h +++ b/ITS/AliITSRawData.h @@ -30,14 +30,14 @@ class AliITSInStream: public TObject{ public: AliITSInStream(); - AliITSInStream(ULong_t length); + AliITSInStream(UInt_t length); virtual ~AliITSInStream(); AliITSInStream(const AliITSInStream &source); // copy constructor AliITSInStream& operator=(const AliITSInStream &source); // ass. operator void ClearStream(); - Bool_t CheckCount(ULong_t count); - ULong_t StreamLength() { + Bool_t CheckCount(UInt_t count); + UInt_t StreamLength() { // stream length return fStreamLen; } @@ -50,8 +50,8 @@ protected: // input stream of unsigned chars - ULong_t fStreamLen; // Length of the array - UChar_t *fInStream; // Pointer to an array of input unsigned chararacters + UInt_t fStreamLen; // Length of the array + UChar_t *fInStream; //[fStreamLen] Pointer to an array of input unsigned chararacters @@ -64,18 +64,18 @@ class AliITSOutStream: public TObject{ public: AliITSOutStream(); - AliITSOutStream(ULong_t length); + AliITSOutStream(UInt_t length); virtual ~AliITSOutStream(); AliITSOutStream(const AliITSOutStream &source); // copy constructor AliITSOutStream& operator=(const AliITSOutStream &source); // assignment operator void ClearStream(); - Bool_t CheckCount(ULong_t count); - ULong_t StreamLength() { + Bool_t CheckCount(UInt_t count); + UInt_t StreamLength() { // stream length return fStreamLen; } - ULong_t *Stream() { + UInt_t *Stream() { // stream return fOutStream; } @@ -84,8 +84,8 @@ protected: // output stream of unsigned chars - ULong_t fStreamLen; // Length of the array - ULong_t *fOutStream; // Pointer to an array of unsigned long + UInt_t fStreamLen; // Length of the array + UInt_t *fOutStream; //[fStreamLen] Pointer to an array of unsigned long