|
|
|
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 4.3 2005/03/15 17:17:14 kusanagi Exp $\n"; |
"$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/PhysEndRunReader.cpp,v 6.6 2008/01/10 16:21:38 mocchiut 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 |
|
memset(subData, 0, length*sizeof(char)); |
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 |
|
|
58 |
//if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for PhysEndRun Packet "); |
//if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for PhysEndRun Packet "); |
59 |
/*if (subCRC != readCRC) { |
if (subCRC != readCRC) { |
60 |
logger->error(" Wrong CRC for PhysEndRun Packet but I process it anyway"); |
logger->error(" Wrong CRC for PhysEndRun Packet but I process it anyway"); |
61 |
}*/ |
} |
62 |
//--------------- CALO SECTION------------------------------------ |
//--------------- CALO SECTION------------------------------------ |
63 |
long int offset = 0; |
long int offset = 0; |
64 |
int j = 0; |
int j = 0; |
69 |
//subData[offset+2--->3] is a fixed word = 0x23 |
//subData[offset+2--->3] is a fixed word = 0x23 |
70 |
//If this bit is ? the subsequent CALO_HK are not valid |
//If this bit is ? the subsequent CALO_HK are not valid |
71 |
if (!(physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK & 0x02)) { |
if (!(physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK & 0x02)) { |
72 |
|
UInt_t kk = 0; |
73 |
for(int k = 0; k < 11 ; k++){ |
for(int k = 0; k < 11 ; k++){ |
74 |
physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (((UINT16)(subData[offset+3+k]<<8))&0xFF00) + (((UINT16)subData[offset+4+k])&0x00FF); |
// physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (UINT8)(subData[offset+4+kk])+ 255 + (UINT8)(subData[offset+5+kk]); |
75 |
physEndRun->CALO_ENDRUN[j].CALO_HK1[k] = (((UINT16)(subData[offset+14+k]<<8))&0xFF00) + (((UINT16)subData[offset+15+k])&0x00FF); |
physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (((UINT16)(subData[offset+4+kk]<<8))&0xFF00) + (((UINT16)subData[offset+5+kk])&0x00FF); |
76 |
} |
physEndRun->CALO_ENDRUN[j].CALO_HK1[k] = (((UINT16)(subData[offset+26+kk]<<8))&0xFF00) + (((UINT16)subData[offset+27+kk])&0x00FF); |
77 |
|
kk += 2; |
78 |
|
} |
79 |
offset = offset + 50; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + 2*CALO_HKx + CRC (2Bytes) |
offset = offset + 50; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + 2*CALO_HKx + CRC (2Bytes) |
80 |
} else offset = offset + 4; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + CRC (2Bytes) |
} else offset = offset + 4; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + CRC (2Bytes) |
81 |
//subData[offset+(3+k)--->(15+k)] have a CRC(what?) in subData[offset+ 23--->24] |
//subData[offset+(3+k)--->(15+k)] have a CRC(what?) in subData[offset+ 23--->24] |
82 |
|
// |
83 |
for(int k = 0; k < 7 ; k++){ |
for(int k = 0; k < 7 ; k++){ |
84 |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_REG = ((UINT8)(subData[offset])&0x1F); |
// |
85 |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_REG = (UINT8)(subData[offset+1]); |
// in CALO_BOARD_ID_REG and CALO_BOARD_STATUS_REG we save only the last id and status register of the 7 and we don't save the CRC for each register. |
86 |
//subData[offset+2--->3] is a fixed word = 0x2 |
// |
87 |
physEndRun->CALO_ENDRUN[j].CALO_REG[k] = (((UINT16)(subData[offset+4]<<8))&0xFF00) + (((UINT16)subData[offset+5])&0x00FF); |
// printf(" INLOPP k %i subdata %X \n",k,(UINT8)(subData[offset])); |
88 |
//subData[offset+ 0--->5] have a CRC(what?) in subData[offset+ 6--->7] |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_REG = ((UINT8)(subData[offset])&0x1F); |
89 |
offset = offset + 8; //CALO_BOARD_ID_REG + CALO_BOARD_STATUS_REG + CALO_REG + CRC(2Byte) |
offset++; |
90 |
} |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_REG = (UINT8)(subData[offset]); |
91 |
|
offset++; |
92 |
|
offset++; |
93 |
|
//subData[offset+2--->3] is a fixed word = 0x2 that is the data lenght |
94 |
|
offset++; |
95 |
|
physEndRun->CALO_ENDRUN[j].CALO_REG[k] = (((UINT16)(subData[offset]<<8))&0xFF00) + (((UINT16)subData[offset+1])&0x00FF); |
96 |
|
offset++; |
97 |
|
// CRC |
98 |
|
offset++; |
99 |
|
offset++; |
100 |
|
// |
101 |
|
offset++; |
102 |
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[1] = (((UINT16)(subData[offset+6]<<8))&0xFF00) + (((UINT16)subData[offset+7])&0x00FF); |
103 |
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[2] = 0; |
104 |
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[3] = 0; |
105 |
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[4] = 0; |
106 |
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[5] = 0; |
107 |
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[6] = 0; |
108 |
|
//subData[offset+ 0--->5] have a CRC(what?) in subData[offset+ 6--->7] |
109 |
|
// offset = offset + 56; //CALO_BOARD_ID_REG + CALO_BOARD_STATUS_REG + CALO_REG + CRC(2Byte) |
110 |
|
}; |
111 |
|
// |
112 |
j++; |
j++; |
113 |
} |
} |
114 |
|
|