]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSCompressRawDataSDD.cxx
cleanup
[u/mrichter/AliRoot.git] / ITS / AliITSCompressRawDataSDD.cxx
index 10f4126f24572b1fa8ab51570fd7ee0d290af0a0..e46f6aaed87aa82634595f8faec92bbb67eab197 100644 (file)
@@ -101,7 +101,7 @@ UInt_t AliITSCompressRawDataSDD::CompressEvent(UChar_t* inputPtr){
   Int_t mask4=0x000000FF;
   while(s.Next()){
     if(s.IsCompletedModule()==kTRUE){
-      word=15<<28;
+      word=UInt_t(15)<<28;
       word+=s.GetCarlosId();
       if(siz+4<fSizeInMemory){
        *(fPointerToData)=(word&mask4);
@@ -115,7 +115,7 @@ UInt_t AliITSCompressRawDataSDD::CompressEvent(UChar_t* inputPtr){
        siz+=4;
       }
     }else if(s.IsCompletedDDL()==kTRUE){
-      word=8<<28;
+      word=UInt_t(8)<<28;
       word+=s.GetJitter();
       if(siz+4<fSizeInMemory){
        *(fPointerToData)=(word&mask4);