| 1 | 
  | 
 /** @file | 
| 2 | 
  | 
  * $Author: Maurizio Nagni $ | 
| 3 | 
  | 
  * $Date: 2005/08/29 09:45:48 $ | 
| 4 | 
  | 
  * $Revision: 5.0 $ | 
| 5 | 
  | 
  *  | 
| 6 | 
  | 
  * Implementation of the TrgInitReader class. | 
| 7 | 
  | 
  */ | 
| 8 | 
  | 
  | 
 | 
 // Implementation of the TrgInitReader 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" | 
  | 
| 9 | 
 #include "ReaderAlgorithms.h" | 
 #include "ReaderAlgorithms.h" | 
| 10 | 
  | 
  | 
 | 
 #include "event/TrgInitEvent.h" | 
  | 
 | 
  | 
  | 
 | 
 using namespace pamela; | 
  | 
| 11 | 
 using namespace pamela::techmodel; | 
 using namespace pamela::techmodel; | 
| 12 | 
  | 
 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TrgInitReader")); | 
 | 
 static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.TrgInitReader");   | 
  | 
| 13 | 
  | 
  | 
| 14 | 
 /** | 
 /** | 
| 15 | 
  * Constructor.  | 
  * Constructor.  | 
| 16 | 
  */ | 
  */ | 
| 17 | 
 TrgInitReader::TrgInitReader(void):  | 
 TrgInitReader::TrgInitReader(void):  | 
| 18 | 
   TechmodelAlgorithm(PacketType::TrgInit, "TechmodelTrgInitReader") {  | 
   TechmodelAlgorithm(PacketType::TrgInit, "TechmodelTrgInitReader") {  | 
| 19 | 
   cat <<  log4cpp::Priority::DEBUG | 
   logger->debug(_T("Constructor")); | 
 | 
       <<  "Constructor " | 
  | 
 | 
       <<  "\n " << log4cpp::CategoryStream::ENDLINE; | 
  | 
| 20 | 
   trgInit = new TrgInitEvent(); | 
   trgInit = new TrgInitEvent(); | 
| 21 | 
 } | 
 } | 
| 22 | 
  | 
  | 
| 25 | 
  */ | 
  */ | 
| 26 | 
 std::string TrgInitReader::GetVersionInfo(void) const { | 
 std::string TrgInitReader::GetVersionInfo(void) const { | 
| 27 | 
   return  | 
   return  | 
| 28 | 
     "$Trailer: /home/cvsmanager/yoda/techmodel/TrgInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; | 
     "$Trailer: /home/cvsmanager/yoda/techmodel/TrgInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; | 
| 29 | 
 } | 
 } | 
| 30 | 
  | 
  | 
| 31 | 
 /** | 
 /** | 
| 39 | 
  | 
  | 
| 40 | 
 /** | 
 /** | 
| 41 | 
  * Unpack the TrgInit event from an input file. | 
  * Unpack the TrgInit event from an input file. | 
| 42 | 
  | 
  * The CPU does not add any CRC control at the packet end. | 
| 43 | 
  | 
  * @param EventNumber  | 
| 44 | 
  | 
  * @param dataLength  | 
| 45 | 
  */ | 
  */ | 
| 46 | 
 void TrgInitReader::RunEvent(int EventNumber, long int length) { | 
 void TrgInitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ | 
| 47 | 
      | 
     char      subData[dataLength]; | 
| 48 | 
      | 
     InputFile->read(subData, sizeof(subData)); | 
| 49 | 
  | 
     trgInit->trgInitData        = new TArrayC(dataLength, subData); | 
| 50 | 
 } | 
 } | 
| 51 | 
  | 
  |