// Implementation of the ForcedFECmdReader class.
 

#define UINT unsigned int
#define BYTE  unsigned char
#include <string>
#include <log4cpp/Category.hh>
extern "C" {
#include <sys/time.h>
#include "CRC.h"
}

#include <fstream>
#include "stdio.h"
#include "ReaderAlgorithms.h"

#include "event/ForcedFECmdEvent.h"

using namespace pamela;
using namespace pamela::techmodel;

static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.ForcedFECmdReader");  

/**
 * Constructor. 
 */
ForcedFECmdReader::ForcedFECmdReader(void): 
  TechmodelAlgorithm(PacketType::ForcedFECmd, "TechmodelForcedFECmdReader") { 
  cat <<  log4cpp::Priority::DEBUG
      <<  "Constructor "
      <<  "\n " << log4cpp::CategoryStream::ENDLINE;
  forcedFECmd = new ForcedFECmdEvent();
}

/**
 * Get a string with the version info of the algorithm.
 */
std::string ForcedFECmdReader::GetVersionInfo(void) const {
  return 
    "$Trailer: /home/cvsmanager/yoda/techmodel/ForcedFECmdReader.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 ForcedFECmdReader::Init(PamelaRun *run) {
  SetInputStream(run);
  run->WriteSubPacket(this, &forcedFECmd, forcedFECmd->Class());
}

/**
 * Unpack the ForcedFECmd event from an input file.
 */
void ForcedFECmdReader::RunEvent(int EventNumber, long int length) {
    
    
}