--- yoda/techmodel/Ac2InitReader.cpp 2005/03/04 15:54:11 3.0 +++ yoda/techmodel/Ac2InitReader.cpp 2006/02/04 12:37:44 5.1 @@ -1,23 +1,14 @@ +/** @file + * $Author: Maurizio Nagni $ + * $Date: 2005/08/29 09:45:48 $ + * $Revision: 5.0 $ + * + * Implementation of the Ac2InitReader class. + */ -// Implementation of the Ac2InitReader 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.Ac2InitReader")); /** @@ -34,7 +25,7 @@ */ std::string Ac2InitReader::GetVersionInfo(void) const { return - "$Trailer: /home/cvsmanager/yoda/techmodel/Ac2InitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; + "$Trailer: /home/cvsmanager/yoda/techmodel/Ac2InitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; } /** @@ -49,9 +40,13 @@ /** * Unpack the Ac2Init event from an input file. + * The CPU does not add any CRC control at the packet end. + * @param EventNumber + * @param dataLength */ -void Ac2InitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ - - +void Ac2InitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ + char subData[dataLength]; + InputFile->read(subData, sizeof(subData)); + ac2Init->ac2InitData = new TArrayC(dataLength, subData); }