/[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 1.6 by kusanagi, Tue Sep 21 20:24:33 2004 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 1.5 2004/08/26 08:21:31 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 1.5 2004/08/26 08:21:31 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 50  void ArrDumpReader::Init(PamelaRun *run) Line 44  void ArrDumpReader::Init(PamelaRun *run)
44  /**  /**
45   * Unpack the ArrDump event from an input file.   * Unpack the ArrDump event from an input file.
46   */   */
47  void ArrDumpReader::RunEvent(int EventNumber, long int length) {  void ArrDumpReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
48        
49    char     *subData;      char      subData[length];
50    char      eventCRC[2];      UINT16    subCRC;      //calculated CRC of the data
51    UINT16    subCRC;      //CRC of the data      UINT16    readCRC;      //CRC read from the end of the subpacket
52    UINT16    readCRC;     //CRC read from the end of the subpacket      long int  dataLength = length - 2;  //the block of data
   long int  dataLength;  
53        
54      //the 2 bytes subtracted belong to the final event CRC bytes      InputFile->read(subData, sizeof(subData));
55      dataLength = length - (long int)2;      subCRC  = CM_Compute_CRC16(0, (UINT8*)subData, dataLength);
56        readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF);
     subData = new char[dataLength];  
     InputFile->read(subData, sizeof(unsigned char)*dataLength);  
     subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength);  
   
     //took the final CRC to compare it with the previous calculated CRC of the data  
     InputFile->read(eventCRC, sizeof(eventCRC));  
     readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF);  
57            
58      //finally check if the RecordCRC is correct and finally update the partialCRC      if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for ArrDump Packet ");
59      if (subCRC == readCRC){      /*if (subCRC != readCRC) {
60          ArrDumpRecord* rec;          logger->error("WRONG CRC FOR ArrDump PACKET. processed anyway for CPU debugging");
61          long int offset = 0;      }*/
62          int i = 0;  
63          int size;      ArrDumpRecord* rec;
64          ArrDump->Records->Clear();      ArrDump->PARAMETER_STAMP = (((UINT32)subData[0]<<24)&0xFF000000) + (((UINT32)subData[1]<<16)&0x00FF0000) +  (((UINT32)subData[2]<<8)&0x0000FF00) + (((UINT32)subData[3])&0x000000FF);
65          TClonesArray &recs = *(ArrDump->Records);      long int offset = 4;
66          while (offset < dataLength){      int i = 0;
67              rec = new(recs[i++]) ArrDumpRecord(); //add a new TmtcRecord      ArrDump->Records->Clear();
68              rec->Arr_ID  = ((UINT8)subData[offset])&0xFF;      TClonesArray &recs = *(ArrDump->Records);
69              rec->Arr_len = (((UINT16)subData[offset+1]<<8)&0xFF00) + ((UINT16)subData[offset+2])&0x00FF;      while (offset < dataLength){
70              //rec->Data = new UINT32[rec->Arr_len];          rec = new(recs[i++]) ArrDumpRecord(); //add a new TmtcRecord
71              size = sizeof(UINT32)*(rec->Arr_len);          rec->Arr_ID  = ((UINT8)subData[offset])&0xFF;
72              rec->Data  = new TArrayI((int)rec->Arr_len, (int*)(subData+offset+3));          rec->Arr_len = (((UINT16)subData[offset+1]<<8)&0xFF00) + ((UINT16)subData[offset+2])&0x00FF;
73              //memcpy(rec->Data, (UINT32*)(subData+offset+3), size);          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;
         }  
     } else {  
         logger->warn(_T("Wrong CRC on Subpacket in ArrDump Packet "));  
75      }      }
     delete [] subData;  
76    }    }

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

  ViewVC Help
Powered by ViewVC 1.1.23