/** @file * $Source: /home/cvsmanager/yoda/techmodel/TabDumpReader.cpp,v $ * $Id: TabDumpReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $ * $Author: kusanagi $ * * Implementation of the TabDumpReader class. */ #include #include #include #include "stdio.h" extern "C" { #include "CRC.h" } #include "ReaderAlgorithms.h" using namespace pamela; using namespace pamela::techmodel; static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TabDumpReader")); /** * Constructor. */ TabDumpReader::TabDumpReader(void): TechmodelAlgorithm(PacketType::TabDump, "TechmodelTabDump") { TabDump = new TabDumpEvent(); logger->debug(_T("Constructor")); } /** * Get a string with the version info of the algorithm. */ std::string TabDumpReader::GetVersionInfo(void) const { return "$Header: /home/cvsmanager/yoda/techmodel/TabDumpReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $\n"; } /** * Initialize the algorithm with a special run. This will initialize the * event reader routines for all packet types. */ void TabDumpReader::Init(PamelaRun *run) { SetInputStream(run); run->WriteSubPacket(this, &TabDump, TabDump->Class()); logger->debug(_T("Initialize")); } /** * Unpack the TabDump event from an input file. */ void TabDumpReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ char *subData; char eventCRC[2]; UINT16 subCRC; //CRC of the data UINT16 readCRC; //CRC read from the end of the subpacket long int dataLength; //the 2 bytes subtracted belong to the final event CRC bytes dataLength = length - (long int)2; subData = new char[dataLength]; InputFile->read(subData, sizeof(unsigned char)*dataLength); subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength); //took the final CRC to compare it with the previous calculated CRC of the data InputFile->read(eventCRC, sizeof(eventCRC)); readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF); //finally check if the RecordCRC is correct and finally update the partialCRC if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for TabDump Packet "); TabDumpRecord* rec; long int offset = 0; int i = 0; int size; TabDump->Records->Clear(); TClonesArray &recs = *(TabDump->Records); while (offset < dataLength){ rec = new(recs[i++]) TabDumpRecord(); //add a new TabDump rec->Tab_ID = ((UINT8)subData[offset])&0xFF; rec->Nrow = ((UINT8)subData[offset+1])&0xFF; rec->Ncol = ((UINT8)subData[offset+2])&0xFF; //rec->Data = new UINT32[(rec->Nrow)*(rec->Ncol)]; size = sizeof(UINT32)*(rec->Nrow)*(rec->Ncol); rec->Data = new TArrayI((int)((rec->Nrow)*(rec->Ncol)), (int*)(subData+offset+3)); //memcpy(rec->Data, (UINT32*)(subData+offset+3), size); offset = offset + size + 3; } delete [] subData; }