24 |
*/ |
*/ |
25 |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
26 |
return |
return |
27 |
"$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"; |
"$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/PhysEndRunReader.cpp,v 6.5 2006/09/29 10:19:25 mocchiut Exp $\n"; |
28 |
} |
} |
29 |
|
|
30 |
/** |
/** |
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); |
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]); |
physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_REG = (UINT8)(subData[offset+1]); |
86 |
//subData[offset+2--->3] is a fixed word = 0x2 |
//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); |
physEndRun->CALO_ENDRUN[j].CALO_REG[0] = (((UINT16)(subData[offset+4]<<8))&0xFF00) + (((UINT16)subData[offset+5])&0x00FF); |
88 |
//subData[offset+ 0--->5] have a CRC(what?) in subData[offset+ 6--->7] |
physEndRun->CALO_ENDRUN[j].CALO_REG[1] = (((UINT16)(subData[offset+6]<<8))&0xFF00) + (((UINT16)subData[offset+7])&0x00FF); |
89 |
offset = offset + 8; //CALO_BOARD_ID_REG + CALO_BOARD_STATUS_REG + CALO_REG + CRC(2Byte) |
physEndRun->CALO_ENDRUN[j].CALO_REG[2] = 0; |
90 |
} |
physEndRun->CALO_ENDRUN[j].CALO_REG[3] = 0; |
91 |
|
physEndRun->CALO_ENDRUN[j].CALO_REG[4] = 0; |
92 |
|
physEndRun->CALO_ENDRUN[j].CALO_REG[5] = 0; |
93 |
|
physEndRun->CALO_ENDRUN[j].CALO_REG[6] = 0; |
94 |
|
//subData[offset+ 0--->5] have a CRC(what?) in subData[offset+ 6--->7] |
95 |
|
offset = offset + 56; //CALO_BOARD_ID_REG + CALO_BOARD_STATUS_REG + CALO_REG + CRC(2Byte) |
96 |
|
// } |
97 |
j++; |
j++; |
98 |
} |
} |
99 |
|
|