| 5 | 
 #define UINT unsigned int | 
 #define UINT unsigned int | 
| 6 | 
 #define BYTE  unsigned char | 
 #define BYTE  unsigned char | 
| 7 | 
 #include <string> | 
 #include <string> | 
| 8 | 
 #include <log4cpp/Category.hh> | 
 #include <log4cxx/logger.h> | 
| 9 | 
 extern "C" { | 
 extern "C" { | 
| 10 | 
 #include <sys/time.h> | 
 #include <sys/time.h> | 
| 11 | 
 #include "CRC.h" | 
 #include "CRC.h" | 
| 20 | 
 using namespace pamela; | 
 using namespace pamela; | 
| 21 | 
 using namespace pamela::techmodel; | 
 using namespace pamela::techmodel; | 
| 22 | 
  | 
  | 
| 23 | 
 static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTrkBothReader");   | 
 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTrkBothReader")); | 
| 24 | 
  | 
  | 
| 25 | 
 /** | 
 /** | 
| 26 | 
  * Constructor.  | 
  * Constructor.  | 
| 27 | 
  */ | 
  */ | 
| 28 | 
 CalibTrkBothReader::CalibTrkBothReader(void):  | 
 CalibTrkBothReader::CalibTrkBothReader(void):  | 
| 29 | 
   TechmodelAlgorithm(PacketType::CalibTrkBoth, "TechmodelCalibTrkBothReader") {  | 
   TechmodelAlgorithm(PacketType::CalibTrkBoth, "TechmodelCalibTrkBothReader") {  | 
| 30 | 
   cat <<  log4cpp::Priority::DEBUG | 
   logger->debug(_T("Constructor")); | 
 | 
       <<  "Constructor " | 
  | 
 | 
       <<  "\n " << log4cpp::CategoryStream::ENDLINE; | 
  | 
| 31 | 
   calibTrkBoth = new CalibTrkBothEvent(); | 
   calibTrkBoth = new CalibTrkBothEvent(); | 
| 32 | 
 } | 
 } | 
| 33 | 
  | 
  | 
| 36 | 
  */ | 
  */ | 
| 37 | 
 std::string CalibTrkBothReader::GetVersionInfo(void) const { | 
 std::string CalibTrkBothReader::GetVersionInfo(void) const { | 
| 38 | 
   return  | 
   return  | 
| 39 | 
     "$Header: /home/cvsmanager/yoda/techmodel/CalibTrkBothReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; | 
     "$Header: /home/cvsmanager/yoda/techmodel/CalibTrkBothReader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $\n"; | 
| 40 | 
 } | 
 } | 
| 41 | 
  | 
  | 
| 42 | 
 /** | 
 /** | 
| 44 | 
  * event reader routines for all packet types. | 
  * event reader routines for all packet types. | 
| 45 | 
  */ | 
  */ | 
| 46 | 
 void CalibTrkBothReader::Init(PamelaRun *run) { | 
 void CalibTrkBothReader::Init(PamelaRun *run) { | 
| 47 | 
  | 
   logger->debug(_T("Initialize")); | 
| 48 | 
   SetInputStream(run); | 
   SetInputStream(run); | 
| 49 | 
   run->WriteSubPacket(this, &calibTrkBoth, calibTrkBoth->Class()); | 
   run->WriteSubPacket(this, &calibTrkBoth, calibTrkBoth->Class()); | 
| 50 | 
 } | 
 } | 
| 52 | 
 /** | 
 /** | 
| 53 | 
  * Unpack the CalibTrkBoth event from an input file. | 
  * Unpack the CalibTrkBoth event from an input file. | 
| 54 | 
  */ | 
  */ | 
| 55 | 
 void CalibTrkBothReader::RunEvent(int EventNumber, long int length) { | 
 void CalibTrkBothReader::RunEvent(int EventNumber, long int length) throw (Exception){ | 
| 56 | 
      | 
      | 
| 57 | 
      | 
      | 
| 58 | 
 } | 
 } |