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

Diff of /yoda/techmodel/TmtcReader.cpp

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

revision 2.0 by kusanagi, Tue Sep 21 20:50:54 2004 UTC revision 2.1 by kusanagi, Fri Dec 3 22:08:01 2004 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/techmodel/TmtcReader.cpp,v $   * $Source: /home/cvsmanager/yoda/techmodel/TmtcReader.cpp,v $
3   * $Id: TmtcReader.cpp,v 1.4 2004/09/21 20:24:33 kusanagi Exp $   * $Id: TmtcReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the TmtcReader class.   * Implementation of the TmtcReader class.
# Line 8  Line 8 
8  * Control the CRC for the entire data Packet not just for single records  * Control the CRC for the entire data Packet not just for single records
9   */   */
10    
   
   
   
11  #include <string>  #include <string>
12  #include <log4cxx/logger.h>  #include <log4cxx/logger.h>
13  extern "C" {  extern "C" {
# Line 43  TmtcReader::TmtcReader(void): Line 40  TmtcReader::TmtcReader(void):
40   */   */
41  std::string TmtcReader::GetVersionInfo(void) const {  std::string TmtcReader::GetVersionInfo(void) const {
42    return    return
43      "$Header: /home/cvsmanager/yoda/techmodel/TmtcReader.cpp,v 1.4 2004/09/21 20:24:33 kusanagi Exp $\n";      "$Header: /home/cvsmanager/yoda/techmodel/TmtcReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $\n";
44  }  }
45    
46  /**  /**
# Line 58  void TmtcReader::Init(PamelaRun *run) { Line 55  void TmtcReader::Init(PamelaRun *run) {
55  /**  /**
56   * Unpack the Tmtc event from an input file.   * Unpack the Tmtc event from an input file.
57   */   */
58  void TmtcReader::RunEvent(int EventNumber, long int length) {  void TmtcReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
59    
60  /*  /*
61  //Just to test crc  //Just to test crc
# Line 120  void TmtcReader::RunEvent(int EventNumbe Line 117  void TmtcReader::RunEvent(int EventNumbe
117              rec->TM_CC_DIAG_ACQ  =  (((UINT32)subData[54]<<24)&0xFF000000) + (((UINT32)subData[55]<<16)&0x00FF0000) +  (((UINT32)subData[56]<<8)&0x0000FF00) + ((UINT32)subData[57])&0x000000FF;              rec->TM_CC_DIAG_ACQ  =  (((UINT32)subData[54]<<24)&0xFF000000) + (((UINT32)subData[55]<<16)&0x00FF0000) +  (((UINT32)subData[56]<<8)&0x0000FF00) + ((UINT32)subData[57])&0x000000FF;
118          } else {          } else {
119              stringstream oss;              stringstream oss;
120              oss.flush();              oss.str("");
121              oss << "Wrong CRC on Subpacket int TMTC Packet starting at position"              oss << "Wrong CRC on Subpacket int TMTC Packet starting at position"
122                  << start;                  << start;
123              logger->warn(oss.str().c_str());              logger->warn(oss.str().c_str());
# Line 128  void TmtcReader::RunEvent(int EventNumbe Line 125  void TmtcReader::RunEvent(int EventNumbe
125      }          }    
126      InputFile->read(eventCRC, sizeof(eventCRC));      InputFile->read(eventCRC, sizeof(eventCRC));
127      readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF);      readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF);
128      if(!(partialCRC == readCRC)) {      if(partialCRC != readCRC) throw WrongCRCException(" Wrong Global CRC for TMTC Packet ");
         logger->warn(_T("The test of calculated CRC with one wrote on file FAILED!!"));  
     }  
129  }  }
130    
131    

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

  ViewVC Help
Powered by ViewVC 1.1.23