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

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

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

revision 6.0 by kusanagi, Tue Feb 7 17:11:11 2006 UTC revision 6.1 by mocchiut, Tue Sep 12 08:56:30 2006 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/techmodel/physics/CalorimeterReader.cpp,v $   * $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/physics/CalorimeterReader.cpp,v $
3   * $Id: CalorimeterReader.cpp,v 5.1 2006/02/04 12:37:46 kusanagi Exp $   * $Id: CalorimeterReader.cpp,v 6.0 2006/02/07 17:11:11 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the CalorimeterReader class.   * Implementation of the CalorimeterReader class.
# Line 52  CalorimeterReader::CalorimeterReader(voi Line 52  CalorimeterReader::CalorimeterReader(voi
52   */   */
53  std::string CalorimeterReader::GetVersionInfo(void) const {  std::string CalorimeterReader::GetVersionInfo(void) const {
54    return    return
55      "$Header: /home/cvsmanager/yoda/techmodel/physics/CalorimeterReader.cpp,v 5.1 2006/02/04 12:37:46 kusanagi Exp $";      "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/physics/CalorimeterReader.cpp,v 6.0 2006/02/07 17:11:11 kusanagi Exp $";
56  }  }
57    
58  /**  /**
# Line 89  void CalorimeterReader::RunEvent(int Eve Line 89  void CalorimeterReader::RunEvent(int Eve
89      //Call to the routine that unpack calorimeter events      //Call to the routine that unpack calorimeter events
90      calunpack_((unsigned char*)data, &length, &ERROR);      calunpack_((unsigned char*)data, &length, &ERROR);
91    
     calorimeter->unpackError = ERROR;  
92      if (ERROR != 0) {      if (ERROR != 0) {
93          char *errmsg;          char *errmsg;
94          switch (ERROR){          switch (ERROR){
# Line 101  void CalorimeterReader::RunEvent(int Eve Line 100  void CalorimeterReader::RunEvent(int Eve
100          oss << "Fortran77 function calunpack: " <<  errmsg;          oss << "Fortran77 function calunpack: " <<  errmsg;
101          logger->warn(oss.str().c_str());          logger->warn(oss.str().c_str());
102      }      }
103        //
104        ERROR = 0;
105        Int_t cmask = 119;
106        for (int i=0; i<4 ; i++){
107          if ( evento_.perror[i] ){
108            ERROR = 1;
109            break;
110          };
111          if ( evento_.stwerr[i] & cmask ){
112            ERROR = 1;
113            break;
114          };
115        };
116        //
117        calorimeter->unpackError = ERROR;
118      //  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
119      //  parameters to zero      //  parameters to zero
120      //} else {      //} else {

Legend:
Removed from v.6.0  
changed lines
  Added in v.6.1

  ViewVC Help
Powered by ViewVC 1.1.23