33 |
void PhysEndRunReader::PKT_RunEvent(char* subData, long int length) throw (Exception){ |
void PhysEndRunReader::PKT_RunEvent(char* subData, long int length) throw (Exception){ |
34 |
std::stringstream oss; |
std::stringstream oss; |
35 |
string msg; |
string msg; |
|
UINT16 subCRC; //CRC of the data |
|
|
UINT16 readCRC; //CRC read from the end of the subpacket |
|
|
|
|
36 |
|
|
37 |
// baco /gpfs/wizard/flight/production/preRawreader/05510005.pam |
// baco /gpfs/wizard/flight/production/preRawreader/05510005.pam |
38 |
if (length<21) |
if (length<21) |
39 |
{ |
{ |
40 |
oss.str(""); |
oss.str(""); |
41 |
oss<<"Wrong Lenght for PhysEndRun Packet: "<<" length = "<< length<<" too small to be real"; |
oss<<"Wrong Lenght for PhysEndRun Packet: "<<" length = "<< length<<" too small to be real"; |
42 |
msg=oss.str(); |
msg=oss.str(); |
43 |
PamOffLineSW::mainLogUtil->logError(msg); |
PamOffLineSW::mainLogUtil->logError(msg); |
44 |
//the packet is not good and will be discarded |
//the packet is not good and will be discarded |
45 |
throw FatalException(" Wrong Lenght for PhysEndRun Packet "); |
throw FatalException(" Wrong Lenght for PhysEndRun Packet "); |
46 |
} |
} |
47 |
|
|
48 |
long int dataLength = length - 2; |
long int dataLength = length ; // -2 |
49 |
long int tbInitPos = dataLength - 19; // 19 is the length of th TB |
long int tbInitPos = dataLength - 19; // 19 is the length of th TB |
50 |
|
|
|
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); |
|
|
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |
|
|
// std::cout<<"computedCRC "<< (UINT16)subCRC<<" readCRC "<< (UINT16)readCRC<<" readCRC_1 "<<(UINT16)subData[length-2]<<" readCRC_2 "<<(UINT16)subData[length-1]<<endl; |
|
|
|
|
|
|
|
51 |
//--------------- CALO SECTION------------------------------------ |
//--------------- CALO SECTION------------------------------------ |
52 |
long int offset = 0; |
long int offset = 0; |
53 |
int j = 0; |
int j = 0; |
54 |
//physEndRun->CALO_ENDRUN. |
// physEndRun->CALO_ENDRUN. |
55 |
while(offset < tbInitPos){ |
while(offset < tbInitPos){ |
56 |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_HK = (((UINT8)subData[offset])&0x1F); |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_HK = (((UINT8)subData[offset])&0xFF); |
57 |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK = ((UINT8)subData[offset+1]); |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK = ((UINT8)subData[offset+1]); |
58 |
//subData[offset+2--->3] is a fixed word = 0x23 |
// |
|
//If this bit is ? the subsequent CALO_HK are not valid |
|
|
printf(" j %i calo_board_id_hk %X \n",j,physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_HK); |
|
|
printf(" j %i calo_board_status_hk %X \n",j,physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK); |
|
59 |
if (!(physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK & 0x02)) { |
if (!(physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK & 0x02)) { |
60 |
UInt_t kk = 0; |
UInt_t kk = 0; |
61 |
for(int k = 0; k < 11 ; k++){ |
for(int k = 0; k < 11 ; k++){ |
|
// physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (UINT8)(subData[offset+4+kk])+ 255 + (UINT8)(subData[offset+5+kk]); |
|
62 |
physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (((UINT16)(subData[offset+4+kk]<<8))&0xFF00) + (((UINT16)subData[offset+5+kk])&0x00FF); |
physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (((UINT16)(subData[offset+4+kk]<<8))&0xFF00) + (((UINT16)subData[offset+5+kk])&0x00FF); |
63 |
physEndRun->CALO_ENDRUN[j].CALO_HK1[k] = (((UINT16)(subData[offset+26+kk]<<8))&0xFF00) + (((UINT16)subData[offset+27+kk])&0x00FF); |
physEndRun->CALO_ENDRUN[j].CALO_HK1[k] = (((UINT16)(subData[offset+26+kk]<<8))&0xFF00) + (((UINT16)subData[offset+27+kk])&0x00FF); |
|
printf(" j %i k %i calo_hk0 %X \n",j,k,physEndRun->CALO_ENDRUN[j].CALO_HK0[k]); |
|
|
printf(" j %i k %i calo_hk1 %X \n",j,k,physEndRun->CALO_ENDRUN[j].CALO_HK1[k]); |
|
64 |
kk += 2; |
kk += 2; |
65 |
} |
} |
66 |
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) |
67 |
} 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) |
|
//subData[offset+(3+k)--->(15+k)] have a CRC(what?) in subData[offset+ 23--->24] |
|
68 |
// |
// |
69 |
for(int k = 0; k < 7 ; k++){ |
for(int k = 0; k < 7 ; k++){ |
70 |
// |
// |
71 |
// 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. |
// 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. |
72 |
// |
// |
73 |
// printf(" INLOPP k %i subdata %X \n",k,(UINT8)(subData[offset])); |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_REG[k] = ((UINT8)(subData[offset])&0xFF); |
|
physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_REG[k] = ((UINT8)(subData[offset])&0x1F); |
|
74 |
offset++; |
offset++; |
75 |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_REG[k] = (UINT8)(subData[offset]); |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_REG[k] = (UINT8)(subData[offset]); |
76 |
offset++; |
offset++; |
|
printf(" j %i k %i calo_board_id_reg %X \n",j,k,physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_REG[k]); |
|
|
printf(" j %i k %i calo_board_status_reg %X \n",j,k,physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_REG[k]); |
|
77 |
offset++; |
offset++; |
|
//subData[offset+2--->3] is a fixed word = 0x2 that is the data lenght |
|
78 |
offset++; |
offset++; |
79 |
physEndRun->CALO_ENDRUN[j].CALO_REG[k] = (((UINT16)(subData[offset]<<8))&0xFF00) + (((UINT16)subData[offset+1])&0x00FF); |
physEndRun->CALO_ENDRUN[j].CALO_REG[k] = (((UINT16)(subData[offset]<<8))&0xFF00) + (((UINT16)subData[offset+1])&0x00FF); |
|
printf(" j %i k %i calo_reg %X \n",j,k,physEndRun->CALO_ENDRUN[j].CALO_REG[k]); |
|
80 |
offset++; |
offset++; |
81 |
// CRC |
// CRC |
82 |
offset++; |
offset++; |
83 |
offset++; |
offset++; |
|
// |
|
84 |
offset++; |
offset++; |
85 |
// physEndRun->CALO_ENDRUN[j].CALO_REG[1] = (((UINT16)(subData[offset+6]<<8))&0xFF00) + (((UINT16)subData[offset+7])&0x00FF); |
// |
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[2] = 0; |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[3] = 0; |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[4] = 0; |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[5] = 0; |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[6] = 0; |
|
|
//subData[offset+ 0--->5] have a CRC(what?) in subData[offset+ 6--->7] |
|
|
// offset = offset + 56; //CALO_BOARD_ID_REG + CALO_BOARD_STATUS_REG + CALO_REG + CRC(2Byte) |
|
86 |
}; |
}; |
87 |
// |
// |
88 |
j++; |
j++; |
89 |
} |
} |
90 |
|
// |
91 |
// //--------------- CALO SECTION------------------------------------ |
physEndRun->TB_ENDRUN.TB_ALARM_MASK = (((UINT32)(subData[offset]<<16))&0x00FF0000) + (((UINT32)(subData[offset + 1]<<8))&0x0000FF00) + (((UINT32)(subData[offset + 2]))&0x000000FF); |
92 |
// long int offset = 0; |
offset += 3; |
93 |
// int j = 0; |
// |
94 |
// //physEndRun->CALO_ENDRUN. |
physEndRun->TB_ENDRUN.TB_PMT_MASK_S3S2S12 = (((UINT32)(subData[offset]<<24))&0xFF000000) + (((UINT32)(subData[offset + 1]<<16))&0x00FF0000) + (((UINT32)(subData[offset + 2]<<8))&0x0000FF00) + (((UINT32)(subData[offset + 3]))&0x000000FF); |
95 |
// while(offset < tbInitPos){ |
offset += 4; |
96 |
// physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_HK = (((UINT8)subData[offset])&0x1F); |
// |
97 |
// physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK = ((UINT8)subData[offset+1]); |
physEndRun->TB_ENDRUN.TB_PMT_MASK_S11CRC = (((UINT32)(subData[offset]<<16))&0x00FF0000) + (((UINT32)(subData[offset + 1]<<8))&0x0000FF00) + (((UINT32)(subData[offset + 2]))&0x000000FF); |
98 |
// //subData[offset+2--->3] is a fixed word = 0x23 |
offset += 3; |
99 |
// //If this bit is ? the subsequent CALO_HK are not valid |
// |
100 |
// if (!(physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK & 0x02)) { |
physEndRun->TB_ENDRUN.TB_S4_CAL_MASK = (((UINT16)(subData[offset]<<8))&0xFF00) + (((UINT16)(subData[offset + 1]))&0x00FF); |
101 |
// UInt_t kk = 0; |
offset += 2; |
102 |
// for(int k = 0; k < 11 ; k++){ |
// |
103 |
// // physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (UINT8)(subData[offset+4+kk])+ 255 + (UINT8)(subData[offset+5+kk]); |
physEndRun->TB_ENDRUN.TB_BUSY_MASK = (((UINT32)(subData[offset]<<24))&0xFF000000) + (((UINT32)(subData[offset + 1]<<16))&0x00FF0000) + (((UINT32)(subData[offset + 2]<<8))&0x0000FF00) + (((UINT32)(subData[offset + 3]))&0x000000FF); |
104 |
// physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (((UINT16)(subData[offset+4+kk]<<8))&0xFF00) + (((UINT16)subData[offset+5+kk])&0x00FF); |
offset += 4; |
105 |
// physEndRun->CALO_ENDRUN[j].CALO_HK1[k] = (((UINT16)(subData[offset+26+kk]<<8))&0xFF00) + (((UINT16)subData[offset+27+kk])&0x00FF); |
// |
106 |
// kk += 2; |
physEndRun->TB_ENDRUN.TB_TRIG_CONF = (((UINT32)(subData[offset]<<16))&0x00FF0000) + (((UINT32)(subData[offset + 1]<<8))&0x0000FF00) + (((UINT32)(subData[offset + 2]))&0x000000FF); |
107 |
// } |
offset += 3; |
108 |
// offset = offset + 50; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + 2*CALO_HKx + CRC (2Bytes) |
// |
109 |
// } else offset = offset + 4; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + CRC (2Bytes) |
// PHYSENDRUN HAS NOT CRC AT THE END!!! |
110 |
// //subData[offset+(3+k)--->(15+k)] have a CRC(what?) in subData[offset+ 23--->24] |
// |
|
|
|
|
// // for(int k = 0; k < 7 ; k++){ |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_REG = ((UINT8)(subData[offset])&0x1F); |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_REG = (UINT8)(subData[offset+1]); |
|
|
// //subData[offset+2--->3] is a fixed word = 0x2 |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[0] = (((UINT16)(subData[offset+4]<<8))&0xFF00) + (((UINT16)subData[offset+5])&0x00FF); |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[1] = (((UINT16)(subData[offset+6]<<8))&0xFF00) + (((UINT16)subData[offset+7])&0x00FF); |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[2] = 0; |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[3] = 0; |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[4] = 0; |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[5] = 0; |
|
|
// physEndRun->CALO_ENDRUN[j].CALO_REG[6] = 0; |
|
|
// //subData[offset+ 0--->5] have a CRC(what?) in subData[offset+ 6--->7] |
|
|
// offset = offset + 56; //CALO_BOARD_ID_REG + CALO_BOARD_STATUS_REG + CALO_REG + CRC(2Byte) |
|
|
// // } |
|
|
// j++; |
|
|
// } |
|
|
|
|
|
//--------------- TB SECTION------------------------------------ |
|
|
printf(" subdata[%u] %X \n",offset,subData[offset]); |
|
|
physEndRun->TB_ENDRUN.TB_ALARM_MASK = (((UINT16)(subData[offset]<<8))&0xFF00) + (((UINT16)subData[offset + 1])&0x00FF); |
|
|
//subData[offset+ 0--->1] have a CRC(what?) in subData[offset+2] |
|
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S3 = ((((UINT16)(subData[offset+2]))<<4)&0x0FF0) + (((UINT16)subData[offset + 3]>>4)&0x000F); |
|
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S2 = ((((UINT8)(subData[offset+3]))<<4)&0xF0) + (((UINT8)subData[offset + 4]>>4)&0x0F); |
|
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S12 = ((((UINT16)(subData[offset+4]))<<8)&0x0F00) + (((UINT16)subData[offset + 5])&0x00FF); |
|
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S11 = ((((UINT16)(subData[offset+6]))<<8)&0xFF00) + (((UINT16)subData[offset + 7])&0x00FF); |
|
|
//subData[offset+ 3--->8] have a CRC(what?) in subData[offset+9] |
|
|
physEndRun->TB_ENDRUN.TB_CALO_MASK = ((UINT8)subData[offset+10])>>5; |
|
|
physEndRun->TB_ENDRUN.TB_S4_MASK = (((UINT8)subData[offset+10])>>1)&0x0F; |
|
|
//subData[tbInitPos+9] have a CRC(what?) in subData[tbInitPos+11] |
|
|
physEndRun->TB_ENDRUN.TB_BUSY_MASK = (((UINT32)subData[offset+12]<<16)&0x00FF0000) + (((UINT32)subData[offset+13]<<8)&0x0000FF00) + (((UINT32)subData[offset+14])&0x000000FF); |
|
|
//subData[tbInitPos+ 12--->14] have a CRC(what?) in subData[tbInitPos+15] |
|
|
physEndRun->TB_ENDRUN.TB_CALIB_FLAG = ((UINT8)subData[offset+16])>>7; |
|
|
physEndRun->TB_ENDRUN.TB_CALO_TRIG = ((UINT8)subData[offset+16])>>6; |
|
|
physEndRun->TB_ENDRUN.TB_S4_TRIG = ((UINT8)subData[offset+16])>>5; |
|
|
physEndRun->TB_ENDRUN.TB_TOF_TRIG = (UINT8)(subData[offset+16]<<3) + (UINT8)(subData[offset+17]>>6); |
|
|
//subData[tbInitPos+ 16--->17] have a CRC(what?) in subData[tbInitPos+18] |
|
|
|
|
|
// I want to use the packet so the exception is thrown here after all .. |
|
|
if (subCRC != readCRC) |
|
|
{ |
|
|
oss.str(""); |
|
|
oss<<"Wrong CRC for PhysEndRun Packet: "<<" CRC COMPUTED= "<< subCRC<<" CRC READ= "<< readCRC; |
|
|
msg=oss.str(); |
|
|
PamOffLineSW::mainLogUtil->logWarning(msg); |
|
|
//the packet is not good but used |
|
|
throw WrongCRCException_PKTUsed(" Wrong CRC for PhysEndRun Packet "); |
|
|
} |
|
111 |
} |
} |
112 |
|
|
113 |
/** |
/** |
115 |
*/ |
*/ |
116 |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
117 |
return |
return |
118 |
"$Header: /afs/ba.infn.it/user/pamela/src/CVS/chewbacca/PamOffLineSW/techmodel/PhysEndRunReader.cpp,v 1.1.1.1 2008/09/23 07:20:24 mocchiut Exp $\n"; |
"$Header: /afs/ba.infn.it/user/pamela/src/CVS/chewbacca/PamOffLineSW/techmodel/PhysEndRunReader.cpp,v 1.3 2008/09/24 15:17:23 mocchiut Exp $\n"; |
119 |
} |
} |