// Implementation of the CalibCalPulse1Reader class. extern "C" { #include "CRC.h" //Struct per il passaggio di dati da e verso la chiamata fortran extern struct { int iev; int pstwerr[4]; float pperror[4]; float calpuls[4][11][96]; } calpul_; //external declaration of the Fortran function void calpulse_(char*, long int*, int*); } #include "ReaderAlgorithms.h" using namespace pamela::techmodel; static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPulse1Reader")); /** * Constructor. */ CalibCalPulse1Reader::CalibCalPulse1Reader(void): TechmodelAlgorithm(PacketType::CalibCalPulse1, "TechmodelCalibCalPulse1Reader") { logger->debug(_T("Constructor")); calibCalPulse1 = new CalibCalPulse1Event(); } /** * Get a string with the version info of the algorithm. */ std::string CalibCalPulse1Reader::GetVersionInfo(void) const { return "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/CalibCalPulse1Reader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $\n"; } /** * Initialize the algorithm with a special run. This will initialize the * event reader routines for all packet types. */ void CalibCalPulse1Reader::Init(PamelaRun *run) { logger->debug(_T("Initialize")); SetInputStream(run); run->WriteSubPacket(this, &calibCalPulse1, calibCalPulse1->Class()); } /** * Unpack the CalibCalPulse1 event from an input file. */ void CalibCalPulse1Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ std::stringstream oss; char packetData[dataLength]; int ERROR; memset(packetData, 0, dataLength*sizeof(char)); InputFile->read(packetData, sizeof(packetData)); calpulse_(packetData, &dataLength, &ERROR); calibCalPulse1->unpackError = ERROR; oss.str(""); if (ERROR != 0) { char *errmsg; switch (ERROR){ case 1: errmsg = "CALORIMETER NOT FOUND"; } oss << "Fortran77 function calpulse error code = " << ERROR << " " << errmsg; logger->warn(oss.str().c_str()); } //else { //Store the unpacked data calibCalPulse1->iev = calpul_.iev; memcpy(calibCalPulse1->pstwerr, calpul_.pstwerr, sizeof(calibCalPulse1->pstwerr)); memcpy(calibCalPulse1->pperror, calpul_.pperror, sizeof(calibCalPulse1->pperror)); //--------have to invert array because of FORTRAN <-> C different management of the indexes float tempCalpuls[96][11][4]; memcpy(tempCalpuls, calpul_.calpuls, sizeof(tempCalpuls)); for (int i = 0; i < 4; i++){ for (int j = 0; j <11; j++){ for (int z = 0; z < 96; z++){ calibCalPulse1->calpuls[i][j][z] = tempCalpuls[z][j][i]; } } } //----------------------------------------------------------------------------------------- //} }