--- yoda/techmodel/TrgAlarmReader.cpp 2005/05/28 10:44:11 4.4 +++ yoda/techmodel/TrgAlarmReader.cpp 2006/02/07 10:36:43 5.2 @@ -1,22 +1,14 @@ +/** @file + * $Author: kusanagi $ + * $Date: 2006/02/04 12:37:45 $ + * $Revision: 5.1 $ + * + * Implementation of the TrgAlarmReader class. + */ -// Implementation of the TrgAlarmReader class. - - -#define UINT unsigned int -#define BYTE unsigned char -#include -#include -extern "C" { -#include "CRC.h" -} - -#include -#include "stdio.h" #include "ReaderAlgorithms.h" -using namespace pamela; using namespace pamela::techmodel; - static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TrgAlarmReader")); /** @@ -33,7 +25,7 @@ */ std::string TrgAlarmReader::GetVersionInfo(void) const { return - "$Trailer: /home/cvsmanager/yoda/techmodel/TrgAlarmReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; + "$Trailer: /opt/cvsmanager/yoda/techmodel/TrgAlarmReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; } /** @@ -48,9 +40,13 @@ /** * Unpack the TrgAlarm event from an input file. + * The CPU does not add any CRC control at the packet end. + * @param EventNumber + * @param dataLength */ -void TrgAlarmReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ - - +void TrgAlarmReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ + char subData[dataLength]; + InputFile->read(subData, sizeof(subData)); + trgAlarm->trgAlarmData = new TArrayC(dataLength, subData); }