// Implementation of the CalibHeaderReader 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/CalibHeaderEvent.h" using namespace pamela; using namespace pamela::techmodel; static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibHeaderReader"); /** * Constructor. */ CalibHeaderReader::CalibHeaderReader(void): TechmodelAlgorithm(PacketType::CalibHeader, "TechmodelCalibHeaderReader") { cat << log4cpp::Priority::DEBUG << "Constructor " << "\n " << log4cpp::CategoryStream::ENDLINE; calibHeader = new CalibHeaderEvent(); } /** * Get a string with the version info of the algorithm. */ std::string CalibHeaderReader::GetVersionInfo(void) const { return "$Header: /home/cvsmanager/yoda/techmodel/CalibHeaderReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; } /** * Initialize the algorithm with a special run. This will initialize the * event reader routines for all packet types. */ void CalibHeaderReader::Init(PamelaRun *run) { SetInputStream(run); run->WriteSubPacket(this, &calibHeader, calibHeader->Class()); } /** * Unpack the CalibHeader event from an input file. */ void CalibHeaderReader::RunEvent(int EventNumber, long int length) { }