--- yoda/techmodel/Ac1InitReader.cpp 2005/05/28 10:44:10 4.4 +++ yoda/techmodel/Ac1InitReader.cpp 2006/02/07 17:11:09 6.0 @@ -1,27 +1,21 @@ +/** @file + * $Author: kusanagi $ + * $Date: 2006/02/07 10:43:06 $ + * $Revision: 5.3 $ + * + * Implementation of the Ac1InitReader class. + */ -// Implementation of the Ac1InitReader 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.Ac1InitReader")); /** * Constructor. + * @param + * @return */ Ac1InitReader::Ac1InitReader(void): TechmodelAlgorithm(PacketType::Ac1Init, "Ac1InitReader") { @@ -31,15 +25,19 @@ /** * Get a string with the version info of the algorithm. + * @param + * @return */ std::string Ac1InitReader::GetVersionInfo(void) const { return - "$Trailer: /home/cvsmanager/yoda/techmodel/Ac1InitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; + "$Trailer: /home/cvsmanager/yoda/techmodel/Ac1InitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; } + /** * Initialize the algorithm with a special run. This will initialize the * event reader routines for all packet types. + * @param run */ void Ac1InitReader::Init(PamelaRun *run) { logger->debug(_T("Initialize")); @@ -49,9 +47,13 @@ /** * Unpack the Ac1Init event from an input file. + * The CPU does not add any CRC control at the packet end. + * @param EventNumber + * @param dataLength */ -void Ac1InitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ - - +void Ac1InitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ + char subData[dataLength]; + InputFile->read(subData, sizeof(subData)); + ac1Init->ac1InitData = new TArrayC(dataLength, subData); }