From: dibari Date: Mon, 7 Jan 2008 14:31:22 +0000 (+0000) Subject: Pad masking ok (0x3F) X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=044e2d18433b42de061886b9f20bc1df51022b78;p=u%2Fmrichter%2FAliRoot.git Pad masking ok (0x3F) --- diff --git a/HMPID/AliHMPIDRawStream.cxx b/HMPID/AliHMPIDRawStream.cxx index 19e87f8049d..dee4acad831 100644 --- a/HMPID/AliHMPIDRawStream.cxx +++ b/HMPID/AliHMPIDRawStream.cxx @@ -247,7 +247,7 @@ Bool_t AliHMPIDRawStream::ReadDilogic(UInt_t word32,Int_t &cntDilogic) dilogic = (word32 >> kbit18) & 0xf; //dilogic info in raw word is between bits: 18...21 if(!CheckDilogic(dilogic)) continue; //check pad number - UInt_t pad = (word32 >> kbit12) & 0x2f; //pad info in raw word is between bits: 12...17 + UInt_t pad = (word32 >> kbit12) & 0x3f; //pad info in raw word is between bits: 12...17 if(!CheckPad(pad)) continue; fCharge[fDDLNumber][row][dilogic][pad] = word32 & 0xfff; // Printf(" (word %08X) DDL %i row %i dil %i pad %i ",word32,fDDLNumber,row,dilogic,pad);