--- yoda/techmodel/TrgInitReader.cpp 2004/08/19 15:24:46 1.1 +++ yoda/techmodel/TrgInitReader.cpp 2006/02/04 12:37:45 5.1 @@ -1,35 +1,22 @@ +/** @file + * $Author: Maurizio Nagni $ + * $Date: 2005/08/29 09:45:48 $ + * $Revision: 5.0 $ + * + * 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 log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.TrgInitReader"); +static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TrgInitReader")); /** * Constructor. */ TrgInitReader::TrgInitReader(void): TechmodelAlgorithm(PacketType::TrgInit, "TechmodelTrgInitReader") { - cat << log4cpp::Priority::DEBUG - << "Constructor " - << "\n " << log4cpp::CategoryStream::ENDLINE; + logger->debug(_T("Constructor")); trgInit = new TrgInitEvent(); } @@ -38,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: /home/cvsmanager/yoda/techmodel/TrgInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; } /** @@ -52,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) { - - +void TrgInitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ + char subData[dataLength]; + InputFile->read(subData, sizeof(subData)); + trgInit->trgInitData = new TArrayC(dataLength, subData); }