/[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 6.2 by kusanagi, Tue May 30 19:10:03 2006 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 6.1 2006/05/30 19:10:02 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 6.1 2006/05/30 19:10:02 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;
# 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.6.2  
changed lines
  Added in v.6.4

  ViewVC Help
Powered by ViewVC 1.1.23