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

Diff of /yoda/techmodel/InitHeaderReader.cpp

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

revision 6.0 by kusanagi, Tue Feb 7 17:11:09 2006 UTC revision 6.3 by mocchiut, Fri Sep 29 10:19:23 2006 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Author: kusanagi $   * $Author: kusanagi $
3   * $Date: 2006/02/04 12:37:45 $   * $Date: 2006/05/30 19:10:03 $
4   * $Revision: 5.1 $   * $Revision: 6.2 $
5   *   *
6   * Implementation of the InitHeaderReader class.   * Implementation of the InitHeaderReader class.
7   */   */
# Line 26  InitHeaderReader::InitHeaderReader(void) Line 26  InitHeaderReader::InitHeaderReader(void)
26   */   */
27  std::string InitHeaderReader::GetVersionInfo(void) const {  std::string InitHeaderReader::GetVersionInfo(void) const {
28    return    return
29      "$Header: /home/cvsmanager/yoda/techmodel/InitHeaderReader.cpp,v 5.1 2006/02/04 12:37:45 kusanagi Exp $\n";      "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/InitHeaderReader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $\n";
30  }  }
31    
32  /**  /**
# Line 53  void InitHeaderReader::RunEvent(int Even Line 53  void InitHeaderReader::RunEvent(int Even
53      UINT16    subCRC;      //calculated CRC of the data      UINT16    subCRC;      //calculated CRC of the data
54      UINT16    readCRC;     //CRC read from the end of the subpacket      UINT16    readCRC;     //CRC read from the end of the subpacket
55      long int  length = dataLength - 2; //the block of data      long int  length = dataLength - 2; //the block of data
56        memset(subData,  0, dataLength*sizeof(char));
57      InputFile->read(subData, sizeof(subData));      InputFile->read(subData, sizeof(subData));
58      subCRC  = CM_Compute_CRC16(0, (UINT8*)subData, length);      subCRC  = CM_Compute_CRC16(0, (UINT8*)subData, length);
59      readCRC = (((UINT16)(subData[dataLength - 2]<<8))&0xFF00) + (((UINT16)subData[dataLength - 1])&0x00FF);      readCRC = (((UINT16)(subData[dataLength - 2]<<8))&0xFF00) + (((UINT16)subData[dataLength - 1])&0x00FF);
60    
61      if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for InitHeader Packet ");      if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for InitHeader Packet ");
62            initHeader->initHeaderData        = new TArrayC(length, subData);
63  }  }
64    

Legend:
Removed from v.6.0  
changed lines
  Added in v.6.3

  ViewVC Help
Powered by ViewVC 1.1.23