--- yoda/techmodel/TofInitReader.cpp 2005/03/04 15:54:11 3.0 +++ yoda/techmodel/TofInitReader.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 TofInitReader class. + */ -// Implementation of the TofInitReader 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/TofInitEvent.h" - -using namespace pamela; using namespace pamela::techmodel; - static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TofInitReader")); /** @@ -36,7 +25,7 @@ */ std::string TofInitReader::GetVersionInfo(void) const { return - "$Trailer: /home/cvsmanager/yoda/techmodel/TofInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; + "$Trailer: /opt/cvsmanager/yoda/techmodel/TofInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; } /** @@ -50,9 +39,13 @@ /** * Unpack the TofInit event from an input file. + * The CPU does not add any CRC control at the packet end. + * @param EventNumber + * @param dataLength */ -void TofInitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ - - +void TofInitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ + char subData[dataLength]; + InputFile->read(subData, sizeof(subData)); + tofInit->tofInitData = new TArrayC(dataLength, subData); }