--- yoda/techmodel/CalibTrailerReader.cpp 2006/02/07 10:43:06 5.3 +++ yoda/techmodel/CalibTrailerReader.cpp 2006/05/30 19:10:02 6.1 @@ -1,7 +1,7 @@ /** @file * $Author: kusanagi $ - * $Date: 2006/02/07 10:36:43 $ - * $Revision: 5.2 $ + * $Date: 2006/02/07 17:11:09 $ + * $Revision: 6.0 $ * * Implementation of the CalibTrailerReader class. */ @@ -53,5 +53,6 @@ readCRC = (((UINT16)(subData[dataLength - 2]<<8))&0xFF00) + (((UINT16)subData[dataLength - 1])&0x00FF); if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for CalibTrailer Packet "); + calibTrailer->calibTrailerData = new TArrayC(length, subData); }