/[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 2.2 by kusanagi, Thu Dec 16 17:32:57 2004 UTC revision 5.1 by kusanagi, Sat Feb 4 12:37:45 2006 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 2.1 2004/12/03 22:08:01 kusanagi Exp $\n";      "$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 5.0 2005/08/29 09:46:13 Maurizio Nagni Exp $\n";
38  }  }
39    
40  /**  /**
# Line 50  void PhysEndRunReader::Init(PamelaRun *r Line 50  void PhysEndRunReader::Init(PamelaRun *r
50  /**  /**
51   * Unpack the PhysEndRun event from an input file.   * Unpack the PhysEndRun event from an input file.
52   */   */
53    
54  void PhysEndRunReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){  void PhysEndRunReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
55        char subData[length];
56        UINT16    subCRC;      //CRC of the data
57        UINT16    readCRC;     //CRC read from the end of the subpacket
58        long int  dataLength = length - 2;    
59        long int  tbInitPos  = dataLength - 19; // 19 is the length of th TB
60    
61        //physEndRun->CALO_ENDRUN[];
62        //physEndRun->TB_ENDRUN;
63            
64        InputFile->read(subData, sizeof(subData));
65        subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength);
66        readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF);
67        
68        //if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for PhysEndRun Packet ");
69        if (subCRC != readCRC) {
70            logger->error(" Wrong CRC for PhysEndRun Packet but I process it anyway");
71        }
72        //--------------- CALO SECTION------------------------------------
73        long int offset = 0;
74        int j = 0;
75        //physEndRun->CALO_ENDRUN.
76        while(offset < tbInitPos){
77            physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_HK     = (((UINT8)subData[offset])&0x1F);
78            physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK = ((UINT8)subData[offset+1]);
79            //subData[offset+2--->3] is a fixed word = 0x23
80            //If this bit is ? the subsequent CALO_HK are not valid
81            if (!(physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_HK & 0x02)) {
82                for(int k = 0; k < 11 ; k++){
83                    physEndRun->CALO_ENDRUN[j].CALO_HK0[k] = (((UINT16)(subData[offset+3+k]<<8))&0xFF00) + (((UINT16)subData[offset+4+k])&0x00FF);
84                    physEndRun->CALO_ENDRUN[j].CALO_HK1[k] = (((UINT16)(subData[offset+14+k]<<8))&0xFF00) + (((UINT16)subData[offset+15+k])&0x00FF);
85                }
86                offset = offset + 50; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + 2*CALO_HKx + CRC (2Bytes)
87            } else offset = offset + 4; //CALO_BOARD_ID_HK + CALO_BOARD_STATUS_HK + CRC (2Bytes)
88            //subData[offset+(3+k)--->(15+k)] have a CRC(what?) in subData[offset+ 23--->24]
89    
90            for(int k = 0; k < 7 ; k++){
91                physEndRun->CALO_ENDRUN[j].CALO_BOARD_ID_REG     = ((UINT8)(subData[offset])&0x1F);
92                physEndRun->CALO_ENDRUN[j].CALO_BOARD_STATUS_REG = (UINT8)(subData[offset+1]);
93                //subData[offset+2--->3] is a fixed word = 0x2
94                physEndRun->CALO_ENDRUN[j].CALO_REG[k] = (((UINT16)(subData[offset+4]<<8))&0xFF00) + (((UINT16)subData[offset+5])&0x00FF);
95                //subData[offset+ 0--->5] have a CRC(what?) in subData[offset+ 6--->7]
96                offset = offset + 8; //CALO_BOARD_ID_REG + CALO_BOARD_STATUS_REG + CALO_REG + CRC(2Byte)
97            }
98            j++;
99        }
100            
101        //--------------- TB SECTION------------------------------------
102        physEndRun->TB_ENDRUN.TB_ALARM_MASK   = (((UINT16)(subData[offset]<<8))&0xFF00) + (((UINT16)subData[offset + 1])&0x00FF);
103        //subData[offset+ 0--->1] have a CRC(what?) in subData[offset+2]
104        physEndRun->TB_ENDRUN.TB_PMT_MASK_S3  = ((((UINT16)(subData[offset+2]))<<4)&0x0FF0) + (((UINT16)subData[offset + 3]>>4)&0x000F);
105        physEndRun->TB_ENDRUN.TB_PMT_MASK_S2  = ((((UINT8)(subData[offset+3]))<<4)&0xF0) + (((UINT8)subData[offset + 4]>>4)&0x0F);
106        physEndRun->TB_ENDRUN.TB_PMT_MASK_S12 = ((((UINT16)(subData[offset+4]))<<8)&0x0F00) + (((UINT16)subData[offset + 5])&0x00FF);
107        physEndRun->TB_ENDRUN.TB_PMT_MASK_S11 = ((((UINT16)(subData[offset+6]))<<8)&0xFF00) + (((UINT16)subData[offset + 7])&0x00FF);
108        //subData[offset+ 3--->8] have a CRC(what?) in subData[offset+9]
109        physEndRun->TB_ENDRUN.TB_CALO_MASK    = ((UINT8)subData[offset+10])>>5;
110        physEndRun->TB_ENDRUN.TB_S4_MASK      = (((UINT8)subData[offset+10])>>1)&0x0F;
111        //subData[tbInitPos+9] have a CRC(what?) in subData[tbInitPos+11]
112        physEndRun->TB_ENDRUN.TB_BUSY_MASK    = (((UINT32)subData[offset+12]<<16)&0x00FF0000) +  (((UINT32)subData[offset+13]<<8)&0x0000FF00) + (((UINT32)subData[offset+14])&0x000000FF);
113        //subData[tbInitPos+ 12--->14] have a CRC(what?) in subData[tbInitPos+15]
114        physEndRun->TB_ENDRUN.TB_CALIB_FLAG   = ((UINT8)subData[offset+16])>>7;
115        physEndRun->TB_ENDRUN.TB_CALO_TRIG    = ((UINT8)subData[offset+16])>>6;
116        physEndRun->TB_ENDRUN.TB_S4_TRIG      = ((UINT8)subData[offset+16])>>5;
117        physEndRun->TB_ENDRUN.TB_TOF_TRIG     = (UINT8)(subData[offset+16]<<3) + (UINT8)(subData[offset+17]>>6);
118        //subData[tbInitPos+ 16--->17] have a CRC(what?) in subData[tbInitPos+18]
119  }  }
120    

Legend:
Removed from v.2.2  
changed lines
  Added in v.5.1

  ViewVC Help
Powered by ViewVC 1.1.23