1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/physics/CalorimeterReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/physics/CalorimeterReader.cpp,v $ |
3 |
* $Id: CalorimeterReader.cpp,v 2.2 2004/10/18 13:01:43 kusanagi Exp $ |
* $Id: CalorimeterReader.cpp,v 2.3 2004/10/18 14:28:03 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the CalorimeterReader class. |
* Implementation of the CalorimeterReader class. |
16 |
|
|
17 |
|
|
18 |
extern struct { |
extern struct { |
19 |
int IEV2; |
int IEV; |
20 |
int stwerr[4]; |
int stwerr[4]; |
21 |
float perror[4]; |
float perror[4]; |
22 |
float dexy[2][22][96]; |
float dexy[2][22][96]; |
24 |
float base[2][22][6]; |
float base[2][22][6]; |
25 |
float calselftrig[4][7]; |
float calselftrig[4][7]; |
26 |
float calIItrig[4]; |
float calIItrig[4]; |
27 |
float calstripshift[4]; |
float calstriphit[4]; |
28 |
float calDSPtaberr[4]; |
float calDSPtaberr[4]; |
29 |
float calevnum[4]; |
float calevnum[4]; |
30 |
} evento_; |
} evento_; |
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 2.2 2004/10/18 13:01:43 kusanagi Exp $"; |
"$Header: /home/cvsmanager/yoda/techmodel/physics/CalorimeterReader.cpp,v 2.3 2004/10/18 14:28:03 kusanagi Exp $"; |
56 |
} |
} |
57 |
|
|
58 |
/** |
/** |
95 |
switch (ERROR){ |
switch (ERROR){ |
96 |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
97 |
} |
} |
98 |
oss.flush(); |
oss.str(""); |
99 |
oss << "Fortran77 function calunpack: " << errmsg; |
oss << "Fortran77 function calunpack: " << errmsg; |
100 |
logger->warn(oss.str().c_str()); |
logger->warn(oss.str().c_str()); |
101 |
} |
} |
102 |
// 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 |
103 |
// parameters to zero |
// parameters to zero |
104 |
//} else { |
//} else { |
105 |
calorimeter->IEV2 = evento_.IEV2; |
calorimeter->IEV = evento_.IEV; |
106 |
memcpy(calorimeter->stwerr, evento_.stwerr, sizeof(calorimeter->stwerr)); |
memcpy(calorimeter->stwerr, evento_.stwerr, sizeof(calorimeter->stwerr)); |
107 |
memcpy(calorimeter->perror, evento_.perror, sizeof(calorimeter->perror)); |
memcpy(calorimeter->perror, evento_.perror, sizeof(calorimeter->perror)); |
108 |
//--------have to invert array because of FORTRAN <-> C different management of the indexes |
//--------have to invert array because of FORTRAN <-> C different management of the indexes |
134 |
} |
} |
135 |
//----------------------------------------------------------------------------------------- |
//----------------------------------------------------------------------------------------- |
136 |
memcpy(calorimeter->calIItrig, evento_.calIItrig, sizeof(calorimeter->calIItrig)); |
memcpy(calorimeter->calIItrig, evento_.calIItrig, sizeof(calorimeter->calIItrig)); |
137 |
memcpy(calorimeter->calstripshift, evento_.calstripshift, sizeof(calorimeter->calstripshift)); |
memcpy(calorimeter->calstriphit, evento_.calstriphit, sizeof(calorimeter->calstriphit)); |
138 |
memcpy(calorimeter->calDSPtaberr, evento_.calDSPtaberr, sizeof(calorimeter->calDSPtaberr)); |
memcpy(calorimeter->calDSPtaberr, evento_.calDSPtaberr, sizeof(calorimeter->calDSPtaberr)); |
139 |
memcpy(calorimeter->calevnum, evento_.calevnum, sizeof(calorimeter->calevnum)); |
memcpy(calorimeter->calevnum, evento_.calevnum, sizeof(calorimeter->calevnum)); |
140 |
//} |
//} |