|
|
|
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 2.3 2005/03/03 13:06:20 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 6.0 2006/02/07 17:11:09 kusanagi Exp $\n"; |
28 |
} |
} |
29 |
|
|
30 |
/** |
/** |
45 |
char subData[length]; |
char subData[length]; |
46 |
UINT16 subCRC; //CRC of the data |
UINT16 subCRC; //CRC of the data |
47 |
UINT16 readCRC; //CRC read from the end of the subpacket |
UINT16 readCRC; //CRC read from the end of the subpacket |
48 |
long int dataLength; |
long int dataLength = length - 2; |
49 |
long int tbInitPos; |
long int tbInitPos = dataLength - 19; // 19 is the length of th TB |
50 |
|
|
|
//int numRecords = ((length - 2)/6); |
|
|
dataLength = length - (long int)2; |
|
|
tbInitPos = dataLength - 19; // 19 is the length of th TB |
|
51 |
//physEndRun->CALO_ENDRUN[]; |
//physEndRun->CALO_ENDRUN[]; |
52 |
//physEndRun->TB_ENDRUN; |
//physEndRun->TB_ENDRUN; |
53 |
|
|
54 |
InputFile->read(subData, sizeof(unsigned char)*length); |
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); |
57 |
|
|
91 |
//--------------- TB SECTION------------------------------------ |
//--------------- TB SECTION------------------------------------ |
92 |
physEndRun->TB_ENDRUN.TB_ALARM_MASK = (((UINT16)(subData[offset]<<8))&0xFF00) + (((UINT16)subData[offset + 1])&0x00FF); |
physEndRun->TB_ENDRUN.TB_ALARM_MASK = (((UINT16)(subData[offset]<<8))&0xFF00) + (((UINT16)subData[offset + 1])&0x00FF); |
93 |
//subData[offset+ 0--->1] have a CRC(what?) in subData[offset+2] |
//subData[offset+ 0--->1] have a CRC(what?) in subData[offset+2] |
94 |
//Here are missing the TB_PMT_MASK; |
physEndRun->TB_ENDRUN.TB_PMT_MASK_S3 = ((((UINT16)(subData[offset+2]))<<4)&0x0FF0) + (((UINT16)subData[offset + 3]>>4)&0x000F); |
95 |
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S2 = ((((UINT8)(subData[offset+3]))<<4)&0xF0) + (((UINT8)subData[offset + 4]>>4)&0x0F); |
96 |
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S12 = ((((UINT16)(subData[offset+4]))<<8)&0x0F00) + (((UINT16)subData[offset + 5])&0x00FF); |
97 |
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S11 = ((((UINT16)(subData[offset+6]))<<8)&0xFF00) + (((UINT16)subData[offset + 7])&0x00FF); |
98 |
//subData[offset+ 3--->8] have a CRC(what?) in subData[offset+9] |
//subData[offset+ 3--->8] have a CRC(what?) in subData[offset+9] |
99 |
physEndRun->TB_ENDRUN.TB_S4_MASK = ((UINT8)subData[offset+10])>>5; |
physEndRun->TB_ENDRUN.TB_CALO_MASK = ((UINT8)subData[offset+10])>>5; |
100 |
physEndRun->TB_ENDRUN.TB_CALO_MASK = (((UINT8)subData[offset+10])>>1)&0x0F; |
physEndRun->TB_ENDRUN.TB_S4_MASK = (((UINT8)subData[offset+10])>>1)&0x0F; |
101 |
//subData[tbInitPos+9] have a CRC(what?) in subData[tbInitPos+11] |
//subData[tbInitPos+9] have a CRC(what?) in subData[tbInitPos+11] |
102 |
physEndRun->TB_ENDRUN.TB_BUSY_MASK = (((UINT32)subData[offset+12]<<16)&0x00FF0000) + (((UINT32)subData[offset+13]<<8)&0x0000FF00) + (((UINT32)subData[offset+14])&0x000000FF); |
physEndRun->TB_ENDRUN.TB_BUSY_MASK = (((UINT32)subData[offset+12]<<16)&0x00FF0000) + (((UINT32)subData[offset+13]<<8)&0x0000FF00) + (((UINT32)subData[offset+14])&0x000000FF); |
103 |
//subData[tbInitPos+ 12--->14] have a CRC(what?) in subData[tbInitPos+15] |
//subData[tbInitPos+ 12--->14] have a CRC(what?) in subData[tbInitPos+15] |
104 |
physEndRun->TB_ENDRUN.TB_CALIB_FLAG = ((UINT8)subData[offset+16])>>7; |
physEndRun->TB_ENDRUN.TB_CALIB_FLAG = ((UINT8)subData[offset+16])>>7; |
105 |
physEndRun->TB_ENDRUN.TB_S4_TRIG = ((UINT8)subData[offset+16])>>6; |
physEndRun->TB_ENDRUN.TB_CALO_TRIG = ((UINT8)subData[offset+16])>>6; |
106 |
physEndRun->TB_ENDRUN.TB_CALO_TRIG = ((UINT8)subData[offset+16])>>5; |
physEndRun->TB_ENDRUN.TB_S4_TRIG = ((UINT8)subData[offset+16])>>5; |
107 |
physEndRun->TB_ENDRUN.TB_TOF_TRIG = (UINT8)(subData[offset+16]<<3) + (UINT8)(subData[offset+17]>>5); |
physEndRun->TB_ENDRUN.TB_TOF_TRIG = (UINT8)(subData[offset+16]<<3) + (UINT8)(subData[offset+17]>>6); |
108 |
//subData[tbInitPos+ 16--->17] have a CRC(what?) in subData[tbInitPos+18] |
//subData[tbInitPos+ 16--->17] have a CRC(what?) in subData[tbInitPos+18] |
109 |
} |
} |
110 |
|
|