/[PAMELA software]/yoda/techmodel/physics/AnticounterReader.cpp
ViewVC logotype

Diff of /yoda/techmodel/physics/AnticounterReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2.0 by kusanagi, Tue Sep 21 20:51:22 2004 UTC revision 2.6.2.1 by kusanagi, Sat Mar 5 15:25:06 2005 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v $   * $Source: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v $
3   * $Id: AnticounterReader.cpp,v 1.3 2004/09/21 20:24:53 kusanagi Exp $   * $Id: AnticounterReader.cpp,v 2.6 2005/01/13 14:50:01 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the AnticounterReader class.   * Implementation of the AnticounterReader class.
# Line 11  Line 11 
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;
# Line 35  AnticounterReader::AnticounterReader(voi Line 34  AnticounterReader::AnticounterReader(voi
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.3 2004/09/21 20:24:53 kusanagi Exp $";      "$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 2.6 2005/01/13 14:50:01 kusanagi Exp $";
38  }  }
39    
40  /**  /**
# Line 59  void AnticounterReader::RunEvent(int Eve Line 58  void AnticounterReader::RunEvent(int Eve
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         std::stringstream oss;
62      char *data = new char[length];      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      //TO BE activated as soon i will know what codes means "error"      
72      /*if (ERROR != 0) {      char *errmsg;
73          char *errmsg;      switch (anticounter->unpackError){
74          switch (ERROR){          case 0xFF: errmsg = "data (physics or calibration) from both cards found";
75              case 1: errmsg = "---------------------";          break;
76          }          case 0xF0: errmsg = "only data from main card found";
77      } else {*/          break;
78          memcpy(anticounter->header, output.header, sizeof(anticounter->header));          case 0x0F: errmsg = "only data from extra card found";
79          anticounter->status = output.status;          break;
80          anticounter->hitmap = output.hitmap;          case 0x00: errmsg = "no data found";
81          memcpy(anticounter->regist,     output.regist,    sizeof(anticounter->regist));          break;
82          memcpy(anticounter->shift,      output.shift,     sizeof(anticounter->shift));          default: errmsg = "ANTICOUNTER ERRROR CODE UNIDENTIFIED";
83          memcpy(anticounter->counters,   output.counters,  sizeof(anticounter->counters));      }
84          memcpy(anticounter->coinc,      output.coinc,     sizeof(anticounter->coinc));      oss.str("");
85          anticounter->trigg = output.trigg;      oss << "Fortran77 function tofunpack: " <<  errmsg;
86          memcpy(anticounter->clock,      output.clock,     sizeof(anticounter->clock));      logger->warn(oss.str().c_str());
87          memcpy(anticounter->temp,       output.temp,      sizeof(anticounter->temp));  
88          memcpy(anticounter->DAC,        output.DAC,       sizeof(anticounter->DAC));      for(int i = 0; i<2; i++){
89          anticounter->CRC = output.CRC;          memcpy(anticounter->header[i], output[i].header, sizeof(anticounter->header[i]));
90      //}          anticounter->status[i] = output[i].status;
91      delete[] data;          anticounter->hitmap[i] = output[i].hitmap;
92            memcpy(anticounter->regist[i],     output[i].regist,    sizeof(output[i].regist));
93            memcpy(anticounter->shift[i],      output[i].shift,     sizeof(output[i].shift));
94            memcpy(anticounter->counters[i],   output[i].counters,  sizeof(output[i].counters));
95            memcpy(anticounter->coinc[i],      output[i].coinc,     sizeof(output[i].coinc));
96            anticounter->trigg[i] = output[i].trigg;
97            memcpy(anticounter->clock[i],      output[i].clock,     sizeof(output[i].clock));
98            memcpy(anticounter->temp[i],       output[i].temp,      sizeof(output[i].temp));
99            memcpy(anticounter->DAC[i],        output[i].DAC,       sizeof(output[i].DAC));
100            anticounter->CRC[i]         = output[i].CRC;
101            anticounter->CRCcheck[i]    = output[i].CRCcheck;
102        }
103        delete [] data;
104  }  }

Legend:
Removed from v.2.0  
changed lines
  Added in v.2.6.2.1

  ViewVC Help
Powered by ViewVC 1.1.23