1 |
/** @file |
/** @file |
2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
3 |
* $Date: 2006/05/30 19:10:01 $ |
* $Date: 2006/05/30 19:10:02 $ |
4 |
* $Revision: 6.1 $ |
* $Revision: 6.2 $ |
5 |
* |
* |
6 |
* Implementation of the Ac1AlarmReader class. |
* Implementation of the Ac1AlarmReader class. |
7 |
*/ |
*/ |
45 |
void Ac1AlarmReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
void Ac1AlarmReader::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->ac1AlarmData = new TArrayC(dataLength, subData); |
acAlarm->ac1AlarmData = new TArrayC(dataLength, subData); |
51 |
|
|