/[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 1.2 by kusanagi, Sat Jul 17 20:03:38 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.1.1.1 2004/07/06 12:20:23 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 <log4cpp/Category.hh>  #include <log4cxx/logger.h>
13  extern "C" {  extern "C" {
14  #include <sys/time.h>  #include <sys/time.h>
15  #include "CRC.h"  #include "CRC.h"
# Line 27  extern "C" { Line 24  extern "C" {
24  using namespace pamela;  using namespace pamela;
25  using namespace pamela::techmodel;  using namespace pamela::techmodel;
26    
27  static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.TmtcReader");    static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TmtcReader"));
28    
29  /**  /**
30   * Constructor.   * Constructor.
31   */   */
32  TmtcReader::TmtcReader(void):  TmtcReader::TmtcReader(void):
33    TechmodelAlgorithm(PacketType::Tmtc, "TechmodelTmtcReader") {    TechmodelAlgorithm(PacketType::Tmtc, "TechmodelTmtcReader") {
34    cat <<  log4cpp::Priority::DEBUG    logger->debug(_T("Constructor"));
       <<  "Constructor "  
       <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
35    Tmtc = new TmtcEvent();    Tmtc = new TmtcEvent();
36  }  }
37    
# Line 45  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.1.1.1 2004/07/06 12:20:23 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 60  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 115  void TmtcReader::RunEvent(int EventNumbe
115                            
116              rec->TM_BIL_DIAG_ACQ =  subData[53];              rec->TM_BIL_DIAG_ACQ =  subData[53];
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;
             //free(subData);  
118          } else {          } else {
119              cat <<  log4cpp::Priority::ERROR              stringstream oss;
120                  <<  "Wrong CRC on Subpacket int TMTC Packet starting at position " << start              oss.str("");
121                  <<  "\n " << log4cpp::CategoryStream::ENDLINE;              oss << "Wrong CRC on Subpacket int TMTC Packet starting at position"
122                    << start;
123                logger->warn(oss.str().c_str());
124          }          }
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 ");
         cat <<  log4cpp::Priority::ERROR  
             <<  "The test of calculated CRC with one wrote on file FAILED!!"  
             <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
     }  
129  }  }
130    
131    

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

  ViewVC Help
Powered by ViewVC 1.1.23