34 |
*/ |
*/ |
35 |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
36 |
return |
return |
37 |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 2.2 2004/12/16 17:32:57 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 4.1 2005/03/15 16:03:01 kusanagi Exp $\n"; |
38 |
} |
} |
39 |
|
|
40 |
/** |
/** |
69 |
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 |
|
|
71 |
//if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for PhysEndRun Packet "); |
//if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for PhysEndRun Packet "); |
72 |
if (subCRC != readCRC) { |
/*if (subCRC != readCRC) { |
73 |
logger->error(" Wrong CRC for PhysEndRun Packet but I process it anyway"); |
logger->error(" Wrong CRC for PhysEndRun Packet but I process it anyway"); |
74 |
} |
}*/ |
75 |
//--------------- CALO SECTION------------------------------------ |
//--------------- CALO SECTION------------------------------------ |
76 |
long int offset = 0; |
long int offset = 0; |
77 |
int j = 0; |
int j = 0; |
104 |
//--------------- TB SECTION------------------------------------ |
//--------------- TB SECTION------------------------------------ |
105 |
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); |
106 |
//subData[offset+ 0--->1] have a CRC(what?) in subData[offset+2] |
//subData[offset+ 0--->1] have a CRC(what?) in subData[offset+2] |
107 |
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S3 = ((((UINT16)(subData[offset+2]))<<4)&0x0FF0) + (((UINT16)subData[offset + 3]>>4)&0x000F); |
108 |
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S2 = ((((UINT8)(subData[offset+3]))<<4)&0xF0) + (((UINT8)subData[offset + 4]>>4)&0x0F); |
109 |
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S12 = ((((UINT16)(subData[offset+4]))<<8)&0x0F00) + (((UINT16)subData[offset + 5])&0x00FF); |
110 |
|
physEndRun->TB_ENDRUN.TB_PMT_MASK_S11 = ((((UINT16)(subData[offset+6]))<<8)&0xFF00) + (((UINT16)subData[offset + 7])&0x00FF); |
111 |
//Here are missing the TB_PMT_MASK; |
//Here are missing the TB_PMT_MASK; |
112 |
//subData[offset+ 3--->8] have a CRC(what?) in subData[offset+9] |
//subData[offset+ 3--->8] have a CRC(what?) in subData[offset+9] |
113 |
physEndRun->TB_ENDRUN.TB_S4_MASK = ((UINT8)subData[offset+10])>>5; |
physEndRun->TB_ENDRUN.TB_S4_MASK = ((UINT8)subData[offset+10])>>5; |
116 |
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); |
117 |
//subData[tbInitPos+ 12--->14] have a CRC(what?) in subData[tbInitPos+15] |
//subData[tbInitPos+ 12--->14] have a CRC(what?) in subData[tbInitPos+15] |
118 |
physEndRun->TB_ENDRUN.TB_CALIB_FLAG = ((UINT8)subData[offset+16])>>7; |
physEndRun->TB_ENDRUN.TB_CALIB_FLAG = ((UINT8)subData[offset+16])>>7; |
119 |
physEndRun->TB_ENDRUN.TB_S4_TRIG = ((UINT8)subData[offset+16])>>6; |
physEndRun->TB_ENDRUN.TB_CALO_TRIG = ((UINT8)subData[offset+16])>>6; |
120 |
physEndRun->TB_ENDRUN.TB_CALO_TRIG = ((UINT8)subData[offset+16])>>5; |
physEndRun->TB_ENDRUN.TB_S4_TRIG = ((UINT8)subData[offset+16])>>5; |
121 |
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); |
122 |
//subData[tbInitPos+ 16--->17] have a CRC(what?) in subData[tbInitPos+18] |
//subData[tbInitPos+ 16--->17] have a CRC(what?) in subData[tbInitPos+18] |
123 |
} |
} |
124 |
|
|