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