| 1 |
/** @file |
/** @file |
| 2 |
* $Source: /home/cvsmanager/yoda/techmodel/RunHeaderReader.cpp,v $ |
* $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/RunHeaderReader.cpp,v $ |
| 3 |
* $Id: RunHeaderReader.cpp,v 4.0 2005/03/06 04:33:02 kusanagi Exp $ |
* $Id: RunHeaderReader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $ |
| 4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 5 |
* |
* |
| 6 |
* Implementation of the RunHeader class. |
* Implementation of the RunHeader class. |
| 7 |
*/ |
*/ |
| 8 |
|
|
| 9 |
|
|
|
#define UINT unsigned int |
|
|
#define BYTE unsigned char |
|
|
#include <string> |
|
|
#include <log4cxx/logger.h> |
|
| 10 |
extern "C" { |
extern "C" { |
| 11 |
#include <sys/time.h> |
#include "CRC.h" |
|
#include "CRC.h" |
|
| 12 |
} |
} |
|
|
|
|
#include <fstream> |
|
|
#include "stdio.h" |
|
| 13 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
| 14 |
|
|
|
#include "event/RunHeaderEvent.h" |
|
|
|
|
|
using namespace pamela; |
|
| 15 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
| 16 |
|
|
| 17 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.RunHeaderReader")); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.RunHeaderReader")); |
| 30 |
*/ |
*/ |
| 31 |
std::string RunHeaderReader::GetVersionInfo(void) const { |
std::string RunHeaderReader::GetVersionInfo(void) const { |
| 32 |
return |
return |
| 33 |
"$Header: /home/cvsmanager/yoda/techmodel/RunHeaderReader.cpp,v 4.0 2005/03/06 04:33:02 kusanagi Exp $\n"; |
"$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/RunHeaderReader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $\n"; |
| 34 |
} |
} |
| 35 |
|
|
| 36 |
/** |
/** |
| 52 |
UINT16 subCRC; //calculated CRC of the data |
UINT16 subCRC; //calculated CRC of the data |
| 53 |
UINT16 readCRC; //CRC read from the end of the subpacket |
UINT16 readCRC; //CRC read from the end of the subpacket |
| 54 |
long int dataLength = length - 2; //the block of data |
long int dataLength = length - 2; //the block of data |
| 55 |
|
memset(subData, 0, length*sizeof(char)); |
| 56 |
InputFile->read(subData, sizeof(subData)); |
InputFile->read(subData, sizeof(subData)); |
| 57 |
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); |
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); |
| 58 |
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |
| 70 |
RunHeader->RM_ACQ_AFTER_CALIB = (BYTE)subData[23]; |
RunHeader->RM_ACQ_AFTER_CALIB = (BYTE)subData[23]; |
| 71 |
RunHeader->TRK_CALIB_USED = (((UINT32)subData[24]<<24)&0xFF000000) + (((UINT32)subData[25]<<16)&0x00FF0000) + (((UINT32)subData[26]<<8)&0x0000FF00) + (((UINT32)subData[27])&0x000000FF); |
RunHeader->TRK_CALIB_USED = (((UINT32)subData[24]<<24)&0xFF000000) + (((UINT32)subData[25]<<16)&0x00FF0000) + (((UINT32)subData[26]<<8)&0x0000FF00) + (((UINT32)subData[27])&0x000000FF); |
| 72 |
RunHeader->ACQ_BUILD_INFO = (((UINT32)subData[28]<<24)&0xFF000000) + (((UINT32)subData[29]<<16)&0x00FF0000) + (((UINT32)subData[30]<<8)&0x0000FF00) + (((UINT32)subData[31])&0x000000FF); |
RunHeader->ACQ_BUILD_INFO = (((UINT32)subData[28]<<24)&0xFF000000) + (((UINT32)subData[29]<<16)&0x00FF0000) + (((UINT32)subData[30]<<8)&0x0000FF00) + (((UINT32)subData[31])&0x000000FF); |
| 73 |
RunHeader->ACQ_VAR_INFO = (BYTE)subData[32]; |
RunHeader->ACQ_VAR_INFO = ((((UINT16)subData[32]<<8)&0xFF00) + (((UINT16)subData[33])&0x00FF)); |
| 74 |
RunHeader->CAL_DSP_MASK = (BYTE)subData[33]; |
RunHeader->CAL_DSP_MASK = (BYTE)subData[34]; |
| 75 |
|
|
| 76 |
} |
} |