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 1.2 2004/08/19 15:24:58 kusanagi Exp $ |
* $Id: CalorimeterReader.cpp,v 2.4 2004/12/03 22:08:12 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the CalorimeterReader class. |
* Implementation of the CalorimeterReader class. |
7 |
*/ |
*/ |
8 |
|
|
9 |
|
|
10 |
|
#include <iostream> |
11 |
#include <string> |
#include <string> |
12 |
#include <log4cpp/Category.hh> |
#include <log4cxx/logger.h> |
13 |
#include "CalorimeterReader.h" |
#include "CalorimeterReader.h" |
14 |
|
|
15 |
extern "C" { |
extern "C" { |
16 |
|
|
17 |
|
|
18 |
extern struct { |
extern struct { |
19 |
int IEV2; |
int IEV; |
20 |
int stwerr; |
int stwerr[4]; |
21 |
int perror; |
float perror[4]; |
22 |
int dexy[2][22][96]; |
float dexy[2][22][96]; |
23 |
int dexyc[2][22][96]; |
float dexyc[2][22][96]; |
24 |
int base[2][22][96]; |
float base[2][22][6]; |
25 |
int calselftrig[4][7]; |
float calselftrig[4][7]; |
26 |
int calIItrig[4]; |
float calIItrig[4]; |
27 |
int calstripshift[4]; |
float calstriphit[4]; |
28 |
int calDSPtaberr[4]; |
float calDSPtaberr[4]; |
29 |
int calevnum[4]; |
float calevnum[4]; |
30 |
} evento_; |
} evento_; |
31 |
|
|
32 |
void calunpack_(short[], long int*, int*); |
void calunpack_(unsigned char[], long int*, int*); |
33 |
|
//void calunpack_(char[], long int*, int*); |
34 |
//Struct per il passaggio di dati da e verso la chiamata fortran |
//Struct per il passaggio di dati da e verso la chiamata fortran |
35 |
} |
} |
36 |
|
|
37 |
using namespace pamela; |
using namespace pamela; |
38 |
using namespace pamela::calorimeter; |
using namespace pamela::calorimeter; |
39 |
|
|
40 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.calorimeter.CalorimeterReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.calorimeter.CalorimeterReader")); |
41 |
|
|
42 |
/** |
/** |
43 |
* Constructor. |
* Constructor. |
44 |
*/ |
*/ |
45 |
CalorimeterReader::CalorimeterReader(void): |
CalorimeterReader::CalorimeterReader(void): |
46 |
TechmodelAlgorithm(PacketType::Physics, "TechmodelCalorimeterReader") { |
TechmodelAlgorithm(PacketType::Physics, "TechmodelCalorimeterReader") { |
47 |
cat.debug("Constructor"); |
logger->debug(_T("Construnctor")); |
48 |
calorimeter = new CalorimeterEvent(); |
calorimeter = new CalorimeterEvent(); |
49 |
} |
} |
50 |
|
|
53 |
*/ |
*/ |
54 |
std::string CalorimeterReader::GetVersionInfo(void) const { |
std::string CalorimeterReader::GetVersionInfo(void) const { |
55 |
return |
return |
56 |
"$Header: /home/cvsmanager/yoda/techmodel/physics/CalorimeterReader.cpp,v 1.2 2004/08/19 15:24:58 kusanagi Exp $"; |
"$Header: /home/cvsmanager/yoda/techmodel/physics/CalorimeterReader.cpp,v 2.4 2004/12/03 22:08:12 kusanagi Exp $"; |
57 |
} |
} |
58 |
|
|
59 |
/** |
/** |
61 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
62 |
*/ |
*/ |
63 |
void CalorimeterReader::Init(PamelaRun *run) { |
void CalorimeterReader::Init(PamelaRun *run) { |
64 |
|
logger->debug(_T("Initialize")); |
65 |
SetInputStream(run); |
SetInputStream(run); |
66 |
run->WriteSubPacket(this, &calorimeter, calorimeter->Class()); |
run->WriteSubPacket(this, &calorimeter, calorimeter->Class()); |
67 |
} |
} |
77 |
* Unpack the Calorimeter data event from the physical packet. |
* Unpack the Calorimeter data event from the physical packet. |
78 |
*/ |
*/ |
79 |
void CalorimeterReader::RunEvent(int EventNumber, const char subData[], long int length) { |
void CalorimeterReader::RunEvent(int EventNumber, const char subData[], long int length) { |
80 |
char data[length]; |
std::stringstream oss; |
81 |
|
char *data = new char[length]; |
82 |
memcpy(data, subData, length); |
memcpy(data, subData, length); |
83 |
int ERROR = 0; |
int ERROR = 0; |
84 |
|
|
85 |
unsigned short convdata[length]; |
/*unsigned short convdata[length]; |
86 |
for (int i = 0; i<length; i++){ |
for (int i = 0; i<length; i++){ |
87 |
convdata[i] = (unsigned short)((unsigned char)subData[i]&0xFF); |
convdata[i] = (unsigned short)((unsigned char)subData[i]&0xFF); |
88 |
} |
}*/ |
89 |
|
|
90 |
//Call to the routine that unpack calorimeter events |
//Call to the routine that unpack calorimeter events |
91 |
calunpack_((short*)convdata, &length, &ERROR); |
calunpack_((unsigned char*)data, &length, &ERROR); |
92 |
|
//calunpack_((char*)data, &length, &ERROR); |
93 |
|
|
94 |
if (ERROR != 0) { |
if (ERROR != 0) { |
95 |
char *errmsg; |
char *errmsg; |
96 |
switch (ERROR){ |
switch (ERROR){ |
97 |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
98 |
} |
} |
99 |
cat << log4cpp::Priority::ERROR |
oss.str(""); |
100 |
<< "Fortran77 function calunpack error code = " << ERROR |
oss << "Fortran77 function calunpack: " << errmsg; |
101 |
<< errmsg |
logger->warn(oss.str().c_str()); |
102 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
} |
103 |
} else { |
// In case of "ERROR != 0" the calunpack will take care to set all |
104 |
calorimeter->IEV2 = evento_.IEV2; |
// parameters to zero |
105 |
calorimeter->stwerr = evento_.stwerr; |
//} else { |
106 |
calorimeter->perror = evento_.perror; |
calorimeter->IEV = evento_.IEV; |
107 |
|
memcpy(calorimeter->stwerr, evento_.stwerr, sizeof(calorimeter->stwerr)); |
108 |
|
memcpy(calorimeter->perror, evento_.perror, sizeof(calorimeter->perror)); |
109 |
//--------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 |
110 |
int tempDexy[96][22][2]; |
float tempDexy[96][22][2]; |
111 |
int tempDexyc[96][22][2]; |
float tempDexyc[96][22][2]; |
112 |
int tempBase[96][22][2]; |
float tempBase[6][22][2]; |
113 |
int tempCalselftrig[7][4]; |
float tempCalselftrig[7][4]; |
114 |
memcpy(tempDexy, evento_.dexy, sizeof(tempDexy)); |
memcpy(tempDexy, evento_.dexy, sizeof(tempDexy)); |
115 |
memcpy(tempDexyc, evento_.dexyc, sizeof(tempDexyc)); |
memcpy(tempDexyc, evento_.dexyc, sizeof(tempDexyc)); |
116 |
memcpy(tempBase, evento_.base, sizeof(tempBase)); |
memcpy(tempBase, evento_.base, sizeof(tempBase)); |
127 |
for (int z = 0; z < 96; z++){ |
for (int z = 0; z < 96; z++){ |
128 |
calorimeter->dexy[i][j][z] = tempDexy[z][j][i]; |
calorimeter->dexy[i][j][z] = tempDexy[z][j][i]; |
129 |
calorimeter->dexyc[i][j][z] = tempDexyc[z][j][i]; |
calorimeter->dexyc[i][j][z] = tempDexyc[z][j][i]; |
130 |
|
} |
131 |
|
for (int z = 0; z < 6; z++){ |
132 |
calorimeter->base[i][j][z] = tempBase[z][j][i]; |
calorimeter->base[i][j][z] = tempBase[z][j][i]; |
133 |
} |
} |
134 |
} |
} |
135 |
} |
} |
136 |
//----------------------------------------------------------------------------------------- |
//----------------------------------------------------------------------------------------- |
|
|
|
137 |
memcpy(calorimeter->calIItrig, evento_.calIItrig, sizeof(calorimeter->calIItrig)); |
memcpy(calorimeter->calIItrig, evento_.calIItrig, sizeof(calorimeter->calIItrig)); |
138 |
memcpy(calorimeter->calstripshift, evento_.calstripshift, sizeof(calorimeter->calstripshift)); |
memcpy(calorimeter->calstriphit, evento_.calstriphit, sizeof(calorimeter->calstriphit)); |
139 |
memcpy(calorimeter->calDSPtaberr, evento_.calDSPtaberr, sizeof(calorimeter->calDSPtaberr)); |
memcpy(calorimeter->calDSPtaberr, evento_.calDSPtaberr, sizeof(calorimeter->calDSPtaberr)); |
140 |
memcpy(calorimeter->calevnum, evento_.calevnum, sizeof(calorimeter->calevnum)); |
memcpy(calorimeter->calevnum, evento_.calevnum, sizeof(calorimeter->calevnum)); |
141 |
} |
//} |
142 |
|
delete[] data; |
143 |
} |
} |