|
|
|
| 1 |
// Implementation of the PhysEndRunReader class. |
// Implementation of the PhysEndRunReader class. |
|
|
|
| 2 |
|
|
|
#define UINT unsigned int |
|
|
#define BYTE unsigned char |
|
|
#include <string> |
|
|
#include <log4cxx/logger.h> |
|
| 3 |
extern "C" { |
extern "C" { |
|
#include <sys/time.h> |
|
| 4 |
#include "CRC.h" |
#include "CRC.h" |
| 5 |
} |
} |
| 6 |
|
|
|
#include <fstream> |
|
|
#include "stdio.h" |
|
| 7 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
| 8 |
|
|
|
using namespace pamela; |
|
| 9 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
| 10 |
|
|
| 11 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysEndRunReader")); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysEndRunReader")); |
| 24 |
*/ |
*/ |
| 25 |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
| 26 |
return |
return |
| 27 |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 5.0 2005/08/29 09:46:13 Maurizio Nagni Exp $\n"; |
"$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/PhysEndRunReader.cpp,v 6.4 2006/08/23 14:39:44 pam-rm2 Exp $\n"; |
| 28 |
} |
} |
| 29 |
|
|
| 30 |
/** |
/** |
| 50 |
|
|
| 51 |
//physEndRun->CALO_ENDRUN[]; |
//physEndRun->CALO_ENDRUN[]; |
| 52 |
//physEndRun->TB_ENDRUN; |
//physEndRun->TB_ENDRUN; |
| 53 |
|
memset(subData, 0, length*sizeof(char)); |
| 54 |
InputFile->read(subData, sizeof(subData)); |
InputFile->read(subData, sizeof(subData)); |
| 55 |
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); |
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); |
| 56 |
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |