| 1 |
/** @file |
/** @file |
| 2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 3 |
* $Date: 2006/02/07 17:11:09 $ |
* $Date: 2006/05/30 19:10:02 $ |
| 4 |
* $Revision: 6.0 $ |
* $Revision: 6.2 $ |
| 5 |
* |
* |
| 6 |
* Implementation of the Ac2AlarmReader class. |
* Implementation of the Ac2AlarmReader class. |
| 7 |
*/ |
*/ |
| 45 |
void Ac2AlarmReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
void Ac2AlarmReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
| 46 |
|
|
| 47 |
char subData[dataLength]; |
char subData[dataLength]; |
| 48 |
|
memset(subData, 0, dataLength*sizeof(char)); |
| 49 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
| 50 |
acAlarm->ac2AlarmData = new TArrayC(dataLength, subData); |
acAlarm->ac2AlarmData = new TArrayC(dataLength, subData); |
| 51 |
|
|