1 |
/** @file |
/** @file |
2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
3 |
* $Date: 2004/12/16 17:32:57 $ |
* $Date: 2004/12/22 11:38:35 $ |
4 |
* $Revision: 2.6 $ |
* $Revision: 2.7 $ |
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. |
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 2.6 2004/12/16 17:32:57 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/EventReader.cpp,v 2.7 2004/12/22 11:38:35 kusanagi Exp $\n"; |
92 |
} |
} |
93 |
|
|
94 |
/** |
/** |
143 |
Header->GetCounter()->Increment(type); |
Header->GetCounter()->Increment(type); |
144 |
logger->info(Header->GetPscuHeader()->Print()); |
logger->info(Header->GetPscuHeader()->Print()); |
145 |
} else { |
} else { |
146 |
throw NotExistingAlgorithmException(type->GetName().c_str()); //to exctract to an higher level and delete the logger! |
oss.str(""); |
147 |
|
oss << "\n No way to read events of type " << type->GetName().c_str() << Header->GetPscuHeader()->Print(); |
148 |
|
throw NotExistingAlgorithmException(oss.str().c_str()); //to exctract to an higher level and delete the logger! |
149 |
} |
} |
150 |
} |
} |
151 |
// In case of exception have to save the packet in a specific root file?? |
// In case of exception have to save the packet in a specific root file?? |
155 |
logger->error(oss.str().c_str()); |
logger->error(oss.str().c_str()); |
156 |
} catch (WrongCRCHeaderException exc) { |
} catch (WrongCRCHeaderException exc) { |
157 |
oss.str(""); |
oss.str(""); |
158 |
oss << exc.print() << " " << Header->GetPscuHeader()->Print(); |
oss << exc.print(); |
159 |
logger->error(oss.str().c_str()); |
logger->error(oss.str().c_str()); |
160 |
} catch (WrongCRCException exc) { |
} catch (WrongCRCException exc) { |
161 |
oss.str(""); |
oss.str(""); |
190 |
/** |
/** |
191 |
* Unpack the PSCU header from a file into the structure. |
* Unpack the PSCU header from a file into the structure. |
192 |
*/ |
*/ |
193 |
void EventReader::UnpackPscuHeader(void) throw (WrongCRCException, LengthException) { |
void EventReader::UnpackPscuHeader(void) throw (WrongCRCHeaderException, LengthException) { |
194 |
stringstream oss; |
stringstream oss; |
195 |
int response = false; |
int response = false; |
196 |
char buff[16]; |
char buff[16]; |
257 |
|
|
258 |
InputFile->seekg(initPos, std::ios::beg); |
InputFile->seekg(initPos, std::ios::beg); |
259 |
} else { |
} else { |
260 |
|
/*Here i should extract the block of Data for later analysis */ |
261 |
InputFile->seekg(-(13), std::ios::cur); |
InputFile->seekg(-(13), std::ios::cur); |
262 |
throw WrongCRCHeaderException(); |
oss.str(""); |
263 |
|
oss << "CRC Header Error on packet:" << PscuHeader::Print(buff); |
264 |
|
throw WrongCRCHeaderException(oss.str().c_str()); |
265 |
} |
} |
266 |
|
|
267 |
/* char tmpId1[4]; |
/* char tmpId1[4]; |