/** @file * $Source: /home/cvspamela/yoda/techmodel/CalibS4Reader.cpp,v $ * $Id: CalibS4Reader.cpp,v 1.1 2004/05/11 10:12:35 nagni Exp $ * $Author: nagni $ * * Implementation of the LogReader class. * ToBeDone: * Control the CRC for the entire data Packet not just for single records */ #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/CalibS4Event.h" using namespace pamela; using namespace pamela::techmodel; static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibS4Reader"); /** * Constructor. */ CalibS4Reader::CalibS4Reader(void): TechmodelAlgorithm(PacketType::Log, "TechmodelCalibS4Reader") { cat << log4cpp::Priority::DEBUG << "Constructor " << "\n " << log4cpp::CategoryStream::ENDLINE; CalibS4 = new CalibS4Event(); } /** * Get a string with the version info of the algorithm. */ std::string CalibS4Reader::GetVersionInfo(void) const { return "$Header: /home/cvspamela/yoda/techmodel/CalibS4Reader.cpp,v 1.1 2004/05/11 10:12:35 nagni Exp $\n"; } /** * Initialize the algorithm with a special run. This will initialize the * event reader routines for all packet types. */ void CalibS4Reader::Init(PamelaRun *run) { SetInputStream(run); run->WriteSubPacket(this, &CalibS4, CalibS4->Class()); } /** * Unpack the CalibS4 event from an input file. */ void CalibS4Reader::RunEvent(int EventNumber, long int length) { }