/[PAMELA software]/yoda/techmodel/PhysEndRunReader.cpp
ViewVC logotype

Diff of /yoda/techmodel/PhysEndRunReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 4.1 by kusanagi, Tue Mar 15 16:03:01 2005 UTC revision 4.4 by kusanagi, Wed Mar 16 16:33:34 2005 UTC
# Line 34  PhysEndRunReader::PhysEndRunReader(void) Line 34  PhysEndRunReader::PhysEndRunReader(void)
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 4.0 2005/03/06 04:33:02 kusanagi Exp $\n";      "$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 4.3 2005/03/15 17:17:14 kusanagi Exp $\n";
38  }  }
39    
40  /**  /**
# Line 104  void PhysEndRunReader::RunEvent(int Even Line 104  void PhysEndRunReader::RunEvent(int Even
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      //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);
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      //subData[offset+ 3--->8] have a CRC(what?) in subData[offset+9]      //subData[offset+ 3--->8] have a CRC(what?) in subData[offset+9]
112      physEndRun->TB_ENDRUN.TB_S4_MASK      = ((UINT8)subData[offset+10])>>5;      physEndRun->TB_ENDRUN.TB_CALO_MASK    = ((UINT8)subData[offset+10])>>5;
113      physEndRun->TB_ENDRUN.TB_CALO_MASK    = (((UINT8)subData[offset+10])>>1)&0x0F;      physEndRun->TB_ENDRUN.TB_S4_MASK      = (((UINT8)subData[offset+10])>>1)&0x0F;
114      //subData[tbInitPos+9] have a CRC(what?) in subData[tbInitPos+11]      //subData[tbInitPos+9] have a CRC(what?) in subData[tbInitPos+11]
115      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);
116      //subData[tbInitPos+ 12--->14] have a CRC(what?) in subData[tbInitPos+15]      //subData[tbInitPos+ 12--->14] have a CRC(what?) in subData[tbInitPos+15]

Legend:
Removed from v.4.1  
changed lines
  Added in v.4.4

  ViewVC Help
Powered by ViewVC 1.1.23