/[PAMELA software]/yoda/techmodel/CalibTrailerReader.cpp
ViewVC logotype

Diff of /yoda/techmodel/CalibTrailerReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by kusanagi, Thu Aug 19 15:24:46 2004 UTC revision 2.1 by kusanagi, Fri Dec 3 22:08:00 2004 UTC
# Line 5  Line 5 
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"
# Line 20  extern "C" { Line 20  extern "C" {
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.CalibTrailerReader");    static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTrk1Reader"));
24    
25  /**  /**
26   * Constructor.   * Constructor.
27   */   */
28  CalibTrailerReader::CalibTrailerReader(void):  CalibTrailerReader::CalibTrailerReader(void):
29    TechmodelAlgorithm(PacketType::CalibTrailer, "TechmodelCalibTrailerReader") {    TechmodelAlgorithm(PacketType::CalibTrailer, "TechmodelCalibTrailerReader") {
30    cat <<  log4cpp::Priority::DEBUG    logger->debug(_T("Constructor"));
       <<  "Constructor "  
       <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
31    calibTrailer = new CalibTrailerEvent();    calibTrailer = new CalibTrailerEvent();
32  }  }
33    
# Line 46  std::string CalibTrailerReader::GetVersi Line 44  std::string CalibTrailerReader::GetVersi
44   * event reader routines for all packet types.   * event reader routines for all packet types.
45   */   */
46  void CalibTrailerReader::Init(PamelaRun *run) {  void CalibTrailerReader::Init(PamelaRun *run) {
47      logger->debug(_T("Initialize"));
48    SetInputStream(run);    SetInputStream(run);
49    run->WriteSubPacket(this, &calibTrailer, calibTrailer->Class());    run->WriteSubPacket(this, &calibTrailer, calibTrailer->Class());
50  }  }
# Line 53  void CalibTrailerReader::Init(PamelaRun Line 52  void CalibTrailerReader::Init(PamelaRun
52  /**  /**
53   * Unpack the CalibTrailer event from an input file.   * Unpack the CalibTrailer event from an input file.
54   */   */
55  void CalibTrailerReader::RunEvent(int EventNumber, long int length) {  void CalibTrailerReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
56            
57            
58  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.2.1

  ViewVC Help
Powered by ViewVC 1.1.23