34 |
*/ |
*/ |
35 |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
36 |
return |
return |
37 |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 4.3 2005/03/15 17:17:14 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 4.4 2005/03/16 16:33:34 kusanagi Exp $\n"; |
38 |
} |
} |
39 |
|
|
40 |
/** |
/** |
68 |
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); |
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); |
69 |
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |
70 |
|
|
71 |
//if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for PhysEndRun Packet "); |
if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for PhysEndRun Packet "); |
72 |
/*if (subCRC != readCRC) { |
/*if (subCRC != readCRC) { |
73 |
logger->error(" Wrong CRC for PhysEndRun Packet but I process it anyway"); |
logger->error(" Wrong CRC for PhysEndRun Packet but I process it anyway"); |
74 |
}*/ |
}*/ |