/[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 2.1 by kusanagi, Fri Dec 3 22:08:00 2004 UTC revision 5.3 by kusanagi, Tue Feb 7 10:43:06 2006 UTC
# Line 1  Line 1 
1    /** @file
2     * $Author: kusanagi $
3     * $Date: 2006/02/07 10:36:43 $
4     * $Revision: 5.2 $
5     *
6     * Implementation of the CalibTrailerReader class.
7     */
8    
 // Implementation of the CalibTrailerReader class.  
   
   
 #define UINT unsigned int  
 #define BYTE  unsigned char  
 #include <string>  
 #include <log4cxx/logger.h>  
 extern "C" {  
 #include <sys/time.h>  
 #include "CRC.h"  
 }  
   
 #include <fstream>  
 #include "stdio.h"  
9  #include "ReaderAlgorithms.h"  #include "ReaderAlgorithms.h"
10    
 #include "event/CalibTrailerEvent.h"  
   
 using namespace pamela;  
11  using namespace pamela::techmodel;  using namespace pamela::techmodel;
12    
13  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTrk1Reader"));  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTrk1Reader"));
# Line 36  CalibTrailerReader::CalibTrailerReader(v Line 26  CalibTrailerReader::CalibTrailerReader(v
26   */   */
27  std::string CalibTrailerReader::GetVersionInfo(void) const {  std::string CalibTrailerReader::GetVersionInfo(void) const {
28    return    return
29      "$Trailer: /home/cvsmanager/yoda/techmodel/CalibTrailerReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";      "$Trailer: /home/cvsmanager/yoda/techmodel/CalibTrailerReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n";
30  }  }
31    
32  /**  /**
# Line 52  void CalibTrailerReader::Init(PamelaRun Line 42  void CalibTrailerReader::Init(PamelaRun
42  /**  /**
43   * Unpack the CalibTrailer event from an input file.   * Unpack the CalibTrailer event from an input file.
44   */   */
45  void CalibTrailerReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){  void CalibTrailerReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){
46            char      subData[dataLength];
47            UINT16    subCRC;      //calculated CRC of the data
48        UINT16    readCRC;     //CRC read from the end of the subpacket
49        long int  length = dataLength - 2; //the block of data
50    
51        InputFile->read(subData, sizeof(subData));
52        subCRC  = CM_Compute_CRC16(0, (UINT8*)subData, length);
53        readCRC = (((UINT16)(subData[dataLength - 2]<<8))&0xFF00) + (((UINT16)subData[dataLength - 1])&0x00FF);
54    
55        if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for CalibTrailer Packet ");
56  }  }
57    

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

  ViewVC Help
Powered by ViewVC 1.1.23