| 1 |
/** @file |
/** @file |
| 2 |
* $Source: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v $ |
| 3 |
* $Id: TrackerReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $ |
* $Id: AnticounterReader.cpp,v 6.1 2006/03/08 08:17:06 kusanagi Exp $ |
| 4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 5 |
* |
* |
| 6 |
* Implementation of the AnticounterReader class. |
* Implementation of the AnticounterReader class. |
| 7 |
*/ |
*/ |
| 8 |
|
|
| 9 |
#include <string> |
#include <string> |
| 10 |
#include <log4cpp/Category.hh> |
#include <log4cxx/logger.h> |
| 11 |
#include "AnticounterReader.h" |
#include "AnticounterReader.h" |
| 12 |
|
|
| 13 |
extern "C" { |
extern "C" { |
| 14 |
#include "../forroutines/anticounter/ACphysics.h" |
#include "../forroutines/anticounter/AC.h" |
| 15 |
extern int ACphysics(int length,unsigned short* datapointer,struct datastruct* physicspointer); |
extern int ACphysics(int, unsigned char[] , struct physicsstruct*); |
|
//Struct per il passaggio di dati da e verso la chiamata fortran |
|
| 16 |
} |
} |
| 17 |
|
|
| 18 |
using namespace pamela; |
using namespace pamela; |
| 19 |
using namespace pamela::anticounter; |
using namespace pamela::anticounter; |
| 20 |
|
|
| 21 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.anticounter.AnticounterReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.anticounter.AnticounterReader")); |
| 22 |
|
|
| 23 |
/** |
/** |
| 24 |
* Constructor. |
* Constructor. |
| 25 |
*/ |
*/ |
| 26 |
AnticounterReader::AnticounterReader(void): |
AnticounterReader::AnticounterReader(void): |
| 27 |
TechmodelAlgorithm(PacketType::Physics, "TechmodelAnticounterReader") { |
TechmodelAlgorithm(PacketType::Physics, "TechmodelAnticounterReader") { |
| 28 |
cat.debug("Constructor"); |
logger->debug(_T("Constructor")); |
| 29 |
anticounter = new AnticounterEvent(); |
anticounter = new AnticounterEvent(); |
| 30 |
} |
} |
| 31 |
|
|
| 34 |
*/ |
*/ |
| 35 |
std::string AnticounterReader::GetVersionInfo(void) const { |
std::string AnticounterReader::GetVersionInfo(void) const { |
| 36 |
return |
return |
| 37 |
"$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $"; |
"$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 6.1 2006/03/08 08:17:06 kusanagi Exp $"; |
| 38 |
} |
} |
| 39 |
|
|
| 40 |
/** |
/** |
| 42 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
| 43 |
*/ |
*/ |
| 44 |
void AnticounterReader::Init(PamelaRun *run) { |
void AnticounterReader::Init(PamelaRun *run) { |
| 45 |
|
logger->debug(_T("Initialize")); |
| 46 |
SetInputStream(run); |
SetInputStream(run); |
| 47 |
run->WriteSubPacket(this, &anticounter, anticounter->Class()); |
run->WriteSubPacket(this, &anticounter, anticounter->Class()); |
| 48 |
} |
} |
| 58 |
* Unpack the Anticounter data event from the physical packet. |
* Unpack the Anticounter data event from the physical packet. |
| 59 |
*/ |
*/ |
| 60 |
void AnticounterReader::RunEvent(int EventNumber, const char subData[], long int length) { |
void AnticounterReader::RunEvent(int EventNumber, const char subData[], long int length) { |
| 61 |
char data[length]; |
std::stringstream oss; |
| 62 |
|
char *data = new char[length]; |
| 63 |
memcpy(data, subData, length); |
memcpy(data, subData, length); |
| 64 |
int ERROR; |
struct physicsstruct output[2] = {0}; |
| 65 |
datastruct output; |
|
| 66 |
|
|
| 67 |
|
|
| 68 |
//Call to the routine that unpack anitocounter events |
//Call to the routine that unpack anitocounter events |
| 69 |
ERROR = ACphysics(length, (unsigned short*) data, &output); |
//anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output)); |
| 70 |
|
anticounter->unpackError = ACphysics(length, (unsigned char*) data, output); |
| 71 |
|
|
| 72 |
|
oss.str(""); |
| 73 |
|
switch (anticounter->unpackError){ |
| 74 |
|
case 0xFF: |
| 75 |
|
oss << "Anticounter unpacking: " << "data (physics or calibration) from both cards found"; |
| 76 |
|
logger->debug(oss.str().c_str()); |
| 77 |
|
break; |
| 78 |
|
case 0xF0: |
| 79 |
|
oss << "Anticounter unpacking: " << "only data from main card found"; |
| 80 |
|
logger->error(oss.str().c_str()); |
| 81 |
|
break; |
| 82 |
|
case 0x0F: |
| 83 |
|
oss << "Anticounter unpacking: " << "only data from extra card found"; |
| 84 |
|
logger->error(oss.str().c_str()); |
| 85 |
|
break; |
| 86 |
|
case 0x00: |
| 87 |
|
oss << "Anticounter unpacking: " << "no data found"; |
| 88 |
|
logger->error(oss.str().c_str()); |
| 89 |
|
break; |
| 90 |
|
oss << "Anticounter unpacking: " << "ANTICOUNTER ERRROR CODE UNIDENTIFIED"; |
| 91 |
|
logger->error(oss.str().c_str()); |
| 92 |
|
} |
| 93 |
|
|
| 94 |
|
|
| 95 |
|
for(int i = 0; i<2; i++){ |
| 96 |
|
memcpy(anticounter->header[i], output[i].header, sizeof(anticounter->header[i])); |
| 97 |
|
anticounter->status[i] = output[i].status; |
| 98 |
|
anticounter->hitmap[i] = output[i].hitmap; |
| 99 |
|
memcpy(anticounter->regist[i], output[i].regist, sizeof(output[i].regist)); |
| 100 |
|
memcpy(anticounter->shift[i], output[i].shift, sizeof(output[i].shift)); |
| 101 |
|
memcpy(anticounter->counters[i], output[i].counters, sizeof(output[i].counters)); |
| 102 |
|
memcpy(anticounter->coinc[i], output[i].coinc, sizeof(output[i].coinc)); |
| 103 |
|
anticounter->trigg[i] = output[i].trigg; |
| 104 |
|
memcpy(anticounter->clock[i], output[i].clock, sizeof(output[i].clock)); |
| 105 |
|
memcpy(anticounter->temp[i], output[i].temp, sizeof(output[i].temp)); |
| 106 |
|
memcpy(anticounter->DAC[i], output[i].DAC, sizeof(output[i].DAC)); |
| 107 |
|
anticounter->CRC[i] = output[i].CRC; |
| 108 |
|
anticounter->CRCcheck[i] = output[i].CRCcheck; |
| 109 |
|
} |
| 110 |
|
|
| 111 |
memcpy(anticounter->header, output.header, sizeof(anticounter->header)); |
//} |
| 112 |
anticounter->status = output.status; |
delete [] data; |
|
anticounter->hitmap = output.hitmap; |
|
|
memcpy(anticounter->regist, output.regist, sizeof(anticounter->regist)); |
|
|
memcpy(anticounter->shift, output.shift, sizeof(anticounter->shift)); |
|
|
memcpy(anticounter->counters, output.counters, sizeof(anticounter->counters)); |
|
|
memcpy(anticounter->coinc, output.coinc, sizeof(anticounter->coinc)); |
|
|
anticounter->trigg = output.trigg; |
|
|
memcpy(anticounter->clock, output.clock, sizeof(anticounter->clock)); |
|
|
memcpy(anticounter->temp, output.temp, sizeof(anticounter->temp)); |
|
|
memcpy(anticounter->DAC, output.DAC, sizeof(anticounter->DAC)); |
|
|
anticounter->CRC = output.CRC; |
|
|
|
|
|
cat << log4cpp::Priority::ERROR |
|
|
<< "Fortran77 function ACPhysics error code = " << ERROR |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
| 113 |
} |
} |