/[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 1.2 by kusanagi, Tue Aug 24 08:00:12 2004 UTC revision 2.2 by kusanagi, Fri Dec 3 22:08:12 2004 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.1 2004/07/20 13:27:07 kusanagi Exp $   * $Id: AnticounterReader.cpp,v 2.1 2004/10/17 12:28:46 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 length, unsigned char* physicspointer, struct physicsstruct* physicspointer);
     //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    
# 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.1 2004/07/20 13:27:07 kusanagi Exp $";      "$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 2.1 2004/10/17 12:28:46 kusanagi Exp $";
38  }  }
39    
40  /**  /**
# Line 43  std::string AnticounterReader::GetVersio Line 42  std::string AnticounterReader::GetVersio
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  }  }
# Line 58  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      char data[length];      char *data = new char[length];
62      memcpy(data, subData, length);      memcpy(data, subData, length);
63      int        ERROR;      int        ERROR;
64      datastruct output;      struct physicsstruct output[2];
65            
66      //Call to the routine that unpack anitocounter events      //Call to the routine that unpack anitocounter events
67      ERROR = ACphysics(length, (unsigned short*) data, &output);      //ERROR = ACphysics(length, (unsigned char*) data, &output);
68        anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output));
69        
70      //TO BE activated as soon i will know what codes means "error"      //TO BE activated as soon i will know what codes means "error"
71      /*if (ERROR != 0) {      /*if (ERROR != 0) {
72          char *errmsg;          char *errmsg;
73          switch (ERROR){          switch (ERROR){
74              case 1: errmsg = "---------------------";              case 1: errmsg = "---------------------";
75          }          }
         cat <<  log4cpp::Priority::ERROR  
         <<  "Fortran77 function ACPhysics error code = " << errmsg  
         <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
76      } else {*/      } else {*/
77          memcpy(anticounter->header, output.header, sizeof(anticounter->header));  
78          anticounter->status = output.status;      for (int i = 0; i<2; i++){
79          anticounter->hitmap = output.hitmap;          memcpy(anticounter->header, output[i].header, sizeof(output[i].header));
80          memcpy(anticounter->regist,     output.regist,    sizeof(anticounter->regist));          anticounter->status[i] = output[i].status;
81          memcpy(anticounter->shift,      output.shift,     sizeof(anticounter->shift));          anticounter->hitmap[i] = output[i].hitmap;
82          memcpy(anticounter->counters,   output.counters,  sizeof(anticounter->counters));          memcpy(anticounter->regist,     output[i].regist,    sizeof(output[i].regist));
83          memcpy(anticounter->coinc,      output.coinc,     sizeof(anticounter->coinc));          memcpy(anticounter->shift,      output[i].shift,     sizeof(output[i].shift));
84          anticounter->trigg = output.trigg;          memcpy(anticounter->counters,   output[i].counters,  sizeof(output[i].counters));
85          memcpy(anticounter->clock,      output.clock,     sizeof(anticounter->clock));          memcpy(anticounter->coinc,      output[i].coinc,     sizeof(output[i].coinc));
86          memcpy(anticounter->temp,       output.temp,      sizeof(anticounter->temp));          anticounter->trigg[i] = output[i].trigg;
87          memcpy(anticounter->DAC,        output.DAC,       sizeof(anticounter->DAC));          memcpy(anticounter->clock,      output[i].clock,     sizeof(output[i].clock));
88          anticounter->CRC = output.CRC;          memcpy(anticounter->temp,       output[i].temp,      sizeof(output[i].temp));
89            memcpy(anticounter->DAC,        output[i].DAC,       sizeof(output[i].DAC));
90            anticounter->CRC[i] = output[i].CRC;
91        }
92    
93      //}      //}
94        delete[] data;
95  }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.2.2

  ViewVC Help
Powered by ViewVC 1.1.23