1 |
/** @file |
/** @file |
2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
3 |
* $Date: 2005/03/04 15:54:11 $ |
* $Date: 2005/01/13 08:20:26 $ |
4 |
* $Revision: 3.0 $ |
* $Revision: 2.9 $ |
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. |
81 |
TechmodelAlgorithmMap.insert(AlgorithmMap::value_type(PacketType::TrgAlarm, new TrgAlarmReader)); |
TechmodelAlgorithmMap.insert(AlgorithmMap::value_type(PacketType::TrgAlarm, new TrgAlarmReader)); |
82 |
TechmodelAlgorithmMap.insert(AlgorithmMap::value_type(PacketType::TofAlarm, new TofAlarmReader)); |
TechmodelAlgorithmMap.insert(AlgorithmMap::value_type(PacketType::TofAlarm, new TofAlarmReader)); |
83 |
TechmodelAlgorithmMap.insert(AlgorithmMap::value_type(PacketType::S4Alarm, new S4AlarmReader)); |
TechmodelAlgorithmMap.insert(AlgorithmMap::value_type(PacketType::S4Alarm, new S4AlarmReader)); |
|
TechmodelAlgorithmMap.insert(AlgorithmMap::value_type(PacketType::TsbT, new TsbTReader)); |
|
|
TechmodelAlgorithmMap.insert(AlgorithmMap::value_type(PacketType::TsbB, new TsbBReader)); |
|
84 |
} |
} |
85 |
|
|
86 |
/** |
/** |
88 |
*/ |
*/ |
89 |
std::string EventReader::GetVersionInfo(void) const { |
std::string EventReader::GetVersionInfo(void) const { |
90 |
return |
return |
91 |
"$Header: /home/cvsmanager/yoda/techmodel/EventReader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/EventReader.cpp,v 2.9 2005/01/13 08:20:26 kusanagi Exp $\n"; |
92 |
} |
} |
93 |
|
|
94 |
/** |
/** |
219 |
oss << "Packet counter is greater than before of " << (Counter - prevPckCounter); |
oss << "Packet counter is greater than before of " << (Counter - prevPckCounter); |
220 |
logger->error(oss.str().c_str()); |
logger->error(oss.str().c_str()); |
221 |
} |
} |
|
|
|
|
if ((OrbitalTime == prevPckOBT) & (PacketId1 == 0x10)){ |
|
|
oss.str(""); |
|
|
oss << "Onboard Time of this packet is equal to the previous packet OBT"; |
|
|
logger->error(oss.str().c_str()); |
|
|
logger->error(Header->GetPscuHeader()->Print()); |
|
|
} |
|
222 |
|
|
223 |
if (OrbitalTime < prevPckOBT){ |
if (OrbitalTime < prevPckOBT){ |
224 |
oss.str(""); |
oss.str(""); |