| 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 3.1 2005/03/06 04:29:24 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. |
| 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 3.1 2005/03/06 04:29:24 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 |
/** |
/** |
| 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){ |
| 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 { |