/************************************************************************** * Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. * * * * Author: The ALICE Off-line Project. * * Contributors are mentioned in the code where appropriate. * * * * Permission to use, copy, modify and distribute this software and its * * documentation strictly for non-commercial purposes is hereby granted * * without fee, provided that the above copyright notice appears in all * * copies and that both the copyright notice and this permission notice * * appear in the supporting documentation. The authors make no claims * * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ /* $Id$*/ /////////////////////////////////////////////////////////////////////////////// /// /// This class provides access to ITS SDD digits in raw data. /// /////////////////////////////////////////////////////////////////////////////// #include "AliITSRawStreamSDD.h" #include "AliRawReader.h" #include "AliLog.h" ClassImp(AliITSRawStreamSDD) const UInt_t AliITSRawStreamSDD::fgkCodeLength[8] = {8, 18, 2, 3, 4, 5, 6, 7}; //______________________________________________________________________ AliITSRawStreamSDD::AliITSRawStreamSDD(AliRawReader* rawReader) : AliITSRawStream(rawReader), fDDLModuleMap(0), fData(0), fEventId(0), fCarlosId(-1), fChannel(0), fJitter(0), fNCarlos(kModulesPerDDL), fDDL(0), fEndWords(0), fResetSkip(0) { // create an object to read ITS SDD raw digits fDDLModuleMap=new AliITSDDLModuleMapSDD(); fDDLModuleMap->SetDefaultMap(); Reset(); for(Int_t im=0;imReset(); fRawReader->Select("ITSSDD"); for(Short_t i=0; i>= fReadBits[fCarlosId][fChannel]; fLastBit[fCarlosId][fChannel] -= fReadBits[fCarlosId][fChannel]; return result; } //______________________________________________________________________ Int_t AliITSRawStreamSDD::DecompAmbra(Int_t value) const { // AMBRA decompression (from 8 to 10 bit) if ((value & 0x80) == 0) { return value & 0x7f; } else if ((value & 0x40) == 0) { return 0x081 + ((value & 0x3f) << 1); } else if ((value & 0x20) == 0) { return 0x104 + ((value & 0x1f) << 3); } else { return 0x208 + ((value & 0x1f) << 4); } } //______________________________________________________________________ Bool_t AliITSRawStreamSDD::Next() { // read the next raw digit // returns kFALSE if there is no digit left // returns kTRUE and fCompletedModule=kFALSE when a digit is found // returns kTRUE and fCompletedModule=kTRUE when a module is completed (=3x3FFFFFFF footer words) fPrevModuleID = fModuleID; fDDL=fRawReader->GetDDLID(); Int_t ddln = fRawReader->GetDDLID(); if(ddln <0) ddln=0; fCompletedModule=kFALSE; while (kTRUE) { if(fResetSkip==0){ Bool_t kSkip = SkipHeaderWord(); fResetSkip=1; if(!kSkip) return kSkip; } if ((fChannel < 0) || (fCarlosId < 0) || (fChannel >= 2) || (fCarlosId >= kModulesPerDDL) || (fLastBit[fCarlosId][fChannel] < fReadBits[fCarlosId][fChannel]) ) { if (!fRawReader->ReadNextInt(fData)) return kFALSE; // read next word ddln = fRawReader->GetDDLID(); if(ddln!=fDDL) { Reset(); fDDL=fRawReader->GetDDLID(); } if(ddln < 0 || ddln > (kDDLsNumber-1)) ddln = 0; fChannel = -1; if((fData >> 16) == 0x7F00){ // jitter word fResetSkip=0; fEndWords=0; continue; } UInt_t nData28= fData >> 28; UInt_t nData30= fData >> 30; if (nData28== 0x02) { // header fEventId = (fData >> 3) & 0x07FF; } else if (nData28== 0x04) { // JTAG word -- do nothing } else if (nData28== 0x03) { // Carlos and FIFO words or Footers if(fData>=fICarlosWord[0]&&fData<=fICarlosWord[11]) { // Carlos Word if(fEndWords==12) continue; // out of event fCarlosId = fData-fICarlosWord[0]; Int_t iFifoIdx = fCarlosId/3; if(fNCarlos == 8) iFifoIdx=fCarlosId/2; fNfifo[iFifoIdx] = fCarlosId; } else if (fData>=fIFifoWord[0]&&fData<=fIFifoWord[3]){ // FIFO word if(fEndWords==12) continue; // out of event fCarlosId = fNfifo[fData-fIFifoWord[0]]; } else if(fData==0x3FFFFFFF){ // Carlos footer if(fCarlosId>=0 && fCarlosIdAddMajorErrorLog(kDataError,"Too many footers"); AliWarning(Form("invalid data: too many footers\n", fData)); return kFALSE; } } else if (nData30 == 0x02 || nData30 == 0x03) { fChannel = nData30-2; if(fCarlosId>=0 && fChannel>=0 && fCarlosId AddMajorErrorLog(kDataFormatErr,Form("Invalid data %8.8x",fData)); AliWarning(Form("invalid data: %8.8x\n", fData)); return kFALSE; } if (fNCarlos == 8 && fCarlosId >= 8) continue; // old data, fNCarlos = 8; if(fCarlosId>=0 && fCarlosId ReadNextInt(fData)) return kFALSE; if ((fData >> 30) == 0x01) continue; // JTAG word if(fData==0xFFFFFFFF) return kTRUE; } }