--- yoda/techmodel/PhysEndRunReader.cpp 2004/09/21 20:50:54 2.0 +++ yoda/techmodel/PhysEndRunReader.cpp 2005/03/03 13:06:20 2.3 @@ -15,8 +15,6 @@ #include "stdio.h" #include "ReaderAlgorithms.h" -#include "event/PhysEndRunEvent.h" - using namespace pamela; using namespace pamela::techmodel; @@ -36,7 +34,7 @@ */ std::string PhysEndRunReader::GetVersionInfo(void) const { return - "$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 1.2 2004/09/21 20:24:33 kusanagi Exp $\n"; + "$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 2.2 2004/12/16 17:32:57 kusanagi Exp $\n"; } /** @@ -52,8 +50,71 @@ /** * Unpack the PhysEndRun event from an input file. */ -void PhysEndRunReader::RunEvent(int EventNumber, long int length) { + +void PhysEndRunReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ + char subData[length]; + UINT16 subCRC; //CRC of the data + UINT16 readCRC; //CRC read from the end of the subpacket + long int dataLength; + long int tbInitPos; + + //int numRecords = ((length - 2)/6); + dataLength = length - (long int)2; + tbInitPos = dataLength - 19; // 19 is the length of th TB + //physEndRun->CALO_ENDRUN[]; + //physEndRun->TB_ENDRUN; + + InputFile->read(subData, sizeof(unsigned char)*length); + subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); + readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); + //if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for PhysEndRun Packet "); + if (subCRC != readCRC) { + logger->error(" Wrong CRC for PhysEndRun Packet but I process it anyway"); + } + //--------------- CALO SECTION------------------------------------ + long int offset = 0; + int j = 0; + //physEndRun->CALO_ENDRUN. + while(offset < tbInitPos){ + physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_HK = (((UINT8)subData[offset])&0x1F); + physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK = ((UINT8)subData[offset+1]); + //subData[offset+2--->3] is a fixed word = 0x23 + //If this bit is ? the subsequent CALO_HK are not valid + if (!(physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK & 0x02)) { + for(int k = 0; k < 11 ; k++){ + physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (((UINT16)(subData[offset+3+k]<<8))&0xFF00) + (((UINT16)subData[offset+4+k])&0x00FF); + physEndRun->CALO_ENDRUN[j].CALO_HK1[k] = (((UINT16)(subData[offset+14+k]<<8))&0xFF00) + (((UINT16)subData[offset+15+k])&0x00FF); + } + offset = offset + 50; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + 2*CALO_HKx + CRC (2Bytes) + } else offset = offset + 4; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + CRC (2Bytes) + //subData[offset+(3+k)--->(15+k)] have a CRC(what?) in subData[offset+ 23--->24] + + for(int k = 0; k < 7 ; k++){ + physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_REG = ((UINT8)(subData[offset])&0x1F); + physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_REG = (UINT8)(subData[offset+1]); + //subData[offset+2--->3] is a fixed word = 0x2 + physEndRun->CALO_ENDRUN[j].CALO_REG[k] = (((UINT16)(subData[offset+4]<<8))&0xFF00) + (((UINT16)subData[offset+5])&0x00FF); + //subData[offset+ 0--->5] have a CRC(what?) in subData[offset+ 6--->7] + offset = offset + 8; //CALO_BOARD_ID_REG + CALO_BOARD_STATUS_REG + CALO_REG + CRC(2Byte) + } + j++; + } + //--------------- TB SECTION------------------------------------ + physEndRun->TB_ENDRUN.TB_ALARM_MASK = (((UINT16)(subData[offset]<<8))&0xFF00) + (((UINT16)subData[offset + 1])&0x00FF); + //subData[offset+ 0--->1] have a CRC(what?) in subData[offset+2] + //Here are missing the TB_PMT_MASK; + //subData[offset+ 3--->8] have a CRC(what?) in subData[offset+9] + physEndRun->TB_ENDRUN.TB_S4_MASK = ((UINT8)subData[offset+10])>>5; + physEndRun->TB_ENDRUN.TB_CALO_MASK = (((UINT8)subData[offset+10])>>1)&0x0F; + //subData[tbInitPos+9] have a CRC(what?) in subData[tbInitPos+11] + physEndRun->TB_ENDRUN.TB_BUSY_MASK = (((UINT32)subData[offset+12]<<16)&0x00FF0000) + (((UINT32)subData[offset+13]<<8)&0x0000FF00) + (((UINT32)subData[offset+14])&0x000000FF); + //subData[tbInitPos+ 12--->14] have a CRC(what?) in subData[tbInitPos+15] + physEndRun->TB_ENDRUN.TB_CALIB_FLAG = ((UINT8)subData[offset+16])>>7; + physEndRun->TB_ENDRUN.TB_S4_TRIG = ((UINT8)subData[offset+16])>>6; + physEndRun->TB_ENDRUN.TB_CALO_TRIG = ((UINT8)subData[offset+16])>>5; + physEndRun->TB_ENDRUN.TB_TOF_TRIG = (UINT8)(subData[offset+16]<<3) + (UINT8)(subData[offset+17]>>5); + //subData[tbInitPos+ 16--->17] have a CRC(what?) in subData[tbInitPos+18] }