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

Diff of /yoda/techmodel/ArrDumpReader.cpp

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

revision 2.2.2.1 by kusanagi, Fri Mar 4 10:24:07 2005 UTC revision 6.1 by kusanagi, Tue May 30 19:10:01 2006 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/techmodel/ArrDumpReader.cpp,v $   * $Source: /home/cvsmanager/yoda/techmodel/ArrDumpReader.cpp,v $
3   * $Id: ArrDumpReader.cpp,v 2.4 2005/03/03 13:02:02 kusanagi Exp $   * $Id: ArrDumpReader.cpp,v 6.0 2006/02/07 17:11:09 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the ArrDumpReader class.   * Implementation of the ArrDumpReader class.
7   */   */
8    
 #include <string>  
 #include <log4cxx/logger.h>  
 #include <fstream>  
 #include "stdio.h"  
9  extern "C" {  extern "C" {
10      #include "CRC.h"      #include "CRC.h"
11  }  }
12    
13  #include "ReaderAlgorithms.h"  #include "ReaderAlgorithms.h"
   
 using namespace pamela;  
14  using namespace pamela::techmodel;  using namespace pamela::techmodel;
15    
16  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.ArrDumpReader"));  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.ArrDumpReader"));
# Line 34  ArrDumpReader::ArrDumpReader(void): Line 28  ArrDumpReader::ArrDumpReader(void):
28   * Get a string with the version info of the algorithm.   * Get a string with the version info of the algorithm.
29   */   */
30  std::string ArrDumpReader::GetVersionInfo(void) const {  std::string ArrDumpReader::GetVersionInfo(void) const {
31    return "$Header: /home/cvsmanager/yoda/techmodel/ArrDumpReader.cpp,v 2.4 2005/03/03 13:02:02 kusanagi Exp $\n";    return "$Header: /home/cvsmanager/yoda/techmodel/ArrDumpReader.cpp,v 6.0 2006/02/07 17:11:09 kusanagi Exp $\n";
32  }  }
33    
34  /**  /**
# Line 53  void ArrDumpReader::Init(PamelaRun *run) Line 47  void ArrDumpReader::Init(PamelaRun *run)
47  void ArrDumpReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){  void ArrDumpReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
48        
49      char      subData[length];      char      subData[length];
50      UINT16    subCRC;      //CRC of the data      UINT16    subCRC;      //calculated CRC of the data
51      UINT16    readCRC;     //CRC read from the end of the subpacket      UINT16    readCRC;      //CRC read from the end of the subpacket
52      long int  dataLength = length - 2;      long int  dataLength = length - 2;  //the block of data
53        
54      InputFile->read(subData, sizeof(unsigned char)*length);      InputFile->read(subData, sizeof(subData));
55      subCRC  = CM_Compute_CRC16(0, (BYTE*)subData, dataLength);      subCRC  = CM_Compute_CRC16(0, (UINT8*)subData, dataLength);
56      readCRC = (((UINT16)(subData[dataLength]<<8))&0xFF00) + (((UINT16)subData[dataLength - 1])&0x00FF);      readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF);
57            
58      if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for ArrDump Packet ");      if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for ArrDump Packet ");
59      /*if (subCRC != readCRC) {      /*if (subCRC != readCRC) {
60          logger->error(" Wrong CRC for ArrDump Packet but I process it anyway");          logger->error("WRONG CRC FOR ArrDump PACKET. processed anyway for CPU debugging");
61      }*/      }*/
62    
63      ArrDumpRecord* rec;      ArrDumpRecord* rec;
64      ArrDump->PARAMETER_STAMP = (((UINT32)subData[0]<<24)&0xFF000000) + (((UINT32)subData[1]<<16)&0x00FF0000) +  (((UINT32)subData[2]<<8)&0x0000FF00) + (((UINT32)subData[3])&0x000000FF);      ArrDump->PARAMETER_STAMP = (((UINT32)subData[0]<<24)&0xFF000000) + (((UINT32)subData[1]<<16)&0x00FF0000) +  (((UINT32)subData[2]<<8)&0x0000FF00) + (((UINT32)subData[3])&0x000000FF);
65      long int offset = 4;      long int offset = 4;
66      int i = 0;      int i = 0;
     int size;  
67      ArrDump->Records->Clear();      ArrDump->Records->Clear();
68      TClonesArray &recs = *(ArrDump->Records);      TClonesArray &recs = *(ArrDump->Records);
69      while (offset < dataLength){      while (offset < dataLength){
70          rec = new(recs[i++]) ArrDumpRecord(); //add a new TmtcRecord          rec = new(recs[i++]) ArrDumpRecord(); //add a new TmtcRecord
71          rec->Arr_ID  = ((UINT8)subData[offset])&0xFF;          rec->Arr_ID  = ((UINT8)subData[offset])&0xFF;
72          rec->Arr_len = (((UINT16)subData[offset+1]<<8)&0xFF00) + ((UINT16)subData[offset+2])&0x00FF;          rec->Arr_len = (((UINT16)subData[offset+1]<<8)&0xFF00) + ((UINT16)subData[offset+2])&0x00FF;
         size = sizeof(UINT32)*(rec->Arr_len);  
73          rec->Data  = new TArrayI((int)rec->Arr_len, (int*)(subData+offset+3));          rec->Data  = new TArrayI((int)rec->Arr_len, (int*)(subData+offset+3));
74          offset = offset + size + 3;          offset = offset + sizeof(UINT32)*(rec->Arr_len) + 3;
75      }      }
     //delete [] subData;  
76    }    }

Legend:
Removed from v.2.2.2.1  
changed lines
  Added in v.6.1

  ViewVC Help
Powered by ViewVC 1.1.23