/** @file * $Author: kusanagi $ * $Date: 2006/02/04 12:37:45 $ * $Revision: 5.1 $ * * Implementation of the TofInitReader class. */ #include "ReaderAlgorithms.h" using namespace pamela::techmodel; static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TofInitReader")); /** * Constructor. */ TofInitReader::TofInitReader(void): TechmodelAlgorithm(PacketType::TofInit, "TechmodelTofInitReader") { logger->debug(_T("Constructor")); tofInit = new TofInitEvent(); } /** * Get a string with the version info of the algorithm. */ std::string TofInitReader::GetVersionInfo(void) const { return "$Trailer: /opt/cvsmanager/yoda/techmodel/TofInitReader.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. */ void TofInitReader::Init(PamelaRun *run) { SetInputStream(run); run->WriteSubPacket(this, &tofInit, tofInit->Class()); } /** * 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 dataLength) throw (WrongCRCException){ char subData[dataLength]; InputFile->read(subData, sizeof(subData)); tofInit->tofInitData = new TArrayC(dataLength, subData); }