/[PAMELA software]/yoda/techmodel/physics/TofReader.cpp
ViewVC logotype

Diff of /yoda/techmodel/physics/TofReader.cpp

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

revision 3.1 by kusanagi, Sun Mar 6 04:29:24 2005 UTC revision 6.4 by mocchiut, Fri Oct 20 11:07:45 2006 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/techmodel/physics/TofReader.cpp,v $   * $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/physics/TofReader.cpp,v $
3   * $Id: TofReader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $   * $Id: TofReader.cpp,v 6.3 2006/09/12 08:56:30 mocchiut Exp $
4   * $Author: kusanagi $   * $Author: mocchiut $
5   *   *
6   * Implementation of the CalorimeterReader class.   * Implementation of the CalorimeterReader class.
7   */   */
# Line 50  TofReader::TofReader(void): Line 50  TofReader::TofReader(void):
50   */   */
51  std::string TofReader::GetVersionInfo(void) const {  std::string TofReader::GetVersionInfo(void) const {
52    return    return
53      "$Header: /home/cvsmanager/yoda/techmodel/physics/TofReader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $";      "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/physics/TofReader.cpp,v 6.3 2006/09/12 08:56:30 mocchiut Exp $";
54  }  }
55    
56  /**  /**
# Line 86  void TofReader::RunEvent(int EventNumber Line 86  void TofReader::RunEvent(int EventNumber
86    
87            
88      //Call to the routine that unpack tof events      //Call to the routine that unpack tof events
89      tofunpack_((unsigned char*)data, &length, &ERROR);      if ( length < 500000 && length >= 0 ){
90              tofunpack_((unsigned char*)data, &length, &ERROR);
91        } else {
92          ERROR = 1;
93        };
94    
95      if (ERROR != 0) {      if (ERROR != 0) {
96          char *errmsg;          char *errmsg;
97          switch (ERROR){          switch (ERROR){
98              case 1: errmsg = "GENERIC TOF ERROR";              case 1: errmsg = "CRC TOF ERROR";
99              break;              break;
100              default: errmsg = "TOF ERRROR CODE UNIDENTIFIED";              default: errmsg = "TOF ERROR CODE UNIDENTIFIED";
101          }          }
102          oss.str("");          oss.str("");
103          oss << "Fortran77 function tofunpack: " <<  errmsg;          oss << "Fortran77 function tofunpack: " <<  errmsg;
104          logger->warn(oss.str().c_str());          logger->debug(oss.str().c_str());
105      }      }
106      //  In case of "ERROR != 0" the calunpack will take care to set all      //  In case of "ERROR != 0" the calunpack will take care to set all
107      //  parameters to zero      //  parameters to zero
# Line 106  void TofReader::RunEvent(int EventNumber Line 109  void TofReader::RunEvent(int EventNumber
109      // only for a variable    tof->tof1int   = evento_.IEV2;      // only for a variable    tof->tof1int   = evento_.IEV2;
110      //        memcpy(tof->tof1int, tofvar_.tof1int, sizeof(tofvar_.tof1int));      //        memcpy(tof->tof1int, tofvar_.tof1int, sizeof(tofvar_.tof1int));
111      //  printf("tof->tof1int[1] %i \n",tof->tof1int[0]);      //  printf("tof->tof1int[1] %i \n",tof->tof1int[0]);
112        tof->unpackError = (unsigned short)ERROR;
113    
114      // for (int i = 0; i < 6; i++){      // for (int i = 0; i < 6; i++){
115      //  tof->tof1int[i] = tofvar_.tof1int[i];      //  tof->tof1int[i] = tofvar_.tof1int[i];

Legend:
Removed from v.3.1  
changed lines
  Added in v.6.4

  ViewVC Help
Powered by ViewVC 1.1.23