| 1 |
/** @file |
/** @file |
| 2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 3 |
* $Date: 2005/02/09 22:21:24 $ |
* $Date: 2005/03/06 04:29:20 $ |
| 4 |
* $Revision: 2.10 $ |
* $Revision: 3.1 $ |
| 5 |
* |
* |
| 6 |
* Implementation of the functions of a sample Algorithm class. |
* Implementation of the functions of a sample Algorithm class. |
| 7 |
* This file can be used as a templace to develop your own algorithm. |
* This file can be used as a templace to develop your own algorithm. |
| 90 |
*/ |
*/ |
| 91 |
std::string EventReader::GetVersionInfo(void) const { |
std::string EventReader::GetVersionInfo(void) const { |
| 92 |
return |
return |
| 93 |
"$Header: /home/cvsmanager/yoda/techmodel/EventReader.cpp,v 2.10 2005/02/09 22:21:24 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/EventReader.cpp,v 3.1 2005/03/06 04:29:20 kusanagi Exp $\n"; |
| 94 |
} |
} |
| 95 |
|
|
| 96 |
/** |
/** |
| 221 |
oss << "Packet counter is greater than before of " << (Counter - prevPckCounter); |
oss << "Packet counter is greater than before of " << (Counter - prevPckCounter); |
| 222 |
logger->error(oss.str().c_str()); |
logger->error(oss.str().c_str()); |
| 223 |
} |
} |
| 224 |
|
|
| 225 |
|
if ((OrbitalTime == prevPckOBT) & (PacketId1 == 0x10)){ |
| 226 |
|
oss.str(""); |
| 227 |
|
oss << "Onboard Time of this packet is equal to the previous packet OBT"; |
| 228 |
|
logger->error(oss.str().c_str()); |
| 229 |
|
logger->error(Header->GetPscuHeader()->Print()); |
| 230 |
|
} |
| 231 |
|
|
| 232 |
if (OrbitalTime < prevPckOBT){ |
if (OrbitalTime < prevPckOBT){ |
| 233 |
oss.str(""); |
oss.str(""); |