/** @file * $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/TsbBReader.cpp,v $ * $Id: TsbBReader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $ * $Author: kusanagi $ * * Implementation of the TsbBReader class. */ extern "C" { #include "CRC.h" } #include "ReaderAlgorithms.h" using namespace pamela::techmodel; static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TsbBReader")); /** * Constructor. */ TsbBReader::TsbBReader(void): TechmodelAlgorithm(PacketType::TsbB, "TechmodelTsbB") { TsbB = new TsbBEvent(); } /** * Get a string with the version info of the algorithm. */ std::string TsbBReader::GetVersionInfo(void) const { return "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/TsbBReader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $\n"; } /** * Initialize the algorithm with a special run. This will initialize the * event reader routines for all packet types. */ void TsbBReader::Init(PamelaRun *run) { logger->debug(_T("Initialize")); SetInputStream(run); run->WriteSubPacket(this, &TsbB, TsbB->Class()); } /** * Unpack the TsbB event from an input file. */ void TsbBReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ char subData[length]; UINT16 subCRC; //calculated CRC of the data UINT16 readCRC; //CRC read from the end of the subpacket long int dataLength = length - 2; //the block of data memset(subData, 0, length*sizeof(char)); InputFile->read(subData, sizeof(subData)); 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 TsbB Packet "); TsbBRecord* rec; TsbB->Records->Clear(); TClonesArray &recs = *(TsbB->Records); int i = 0; long int offset = 0; while (offset < dataLength){ rec = new(recs[i++]) TsbBRecord(); //add a new TsbB rec->RECORD_OBT = (((UINT32)subData[offset]<<24)&0xFF000000) + (((UINT32)subData[offset+1]<<16)&0x00FF0000) + (((UINT32)subData[offset+2]<<8)&0x0000FF00) + (((UINT32)subData[offset+3])&0x000000FF); rec->STATUS_CODE = subData[offset+4]; for (int j=0; j < 7; j++){ rec->B_FIELD[j] = ((((UINT16)subData[offset+5+(2*j)]<<8)&0xFF00) + (((UINT16)subData[offset+6+(2*j)])&0x00FF)); } offset = offset + 19; } }