/[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.1 by kusanagi, Sun Oct 17 12:28:46 2004 UTC revision 3.0 by kusanagi, Fri Mar 4 15:54:11 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 2.0 2004/09/21 20:51:22 kusanagi Exp $   * $Id: AnticounterReader.cpp,v 2.7 2005/02/08 08:25:23 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the AnticounterReader class.   * Implementation of the AnticounterReader class.
# Line 12  Line 12 
12    
13  extern "C" {  extern "C" {
14      #include "../forroutines/anticounter/AC.h"      #include "../forroutines/anticounter/AC.h"
15      extern int ACphysics(int length, unsigned char* physicspointer, struct physicsstruct* physicspointer);      extern int ACphysics(int, unsigned char[] , struct physicsstruct*);
16  }  }
17    
18  using namespace pamela;  using namespace pamela;
# Line 34  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 2.0 2004/09/21 20:51:22 kusanagi Exp $";      "$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 2.7 2005/02/08 08:25:23 kusanagi Exp $";
38  }  }
39    
40  /**  /**
# Line 61  void AnticounterReader::RunEvent(int Eve Line 61  void AnticounterReader::RunEvent(int Eve
61      char *data = new char[length];      char *data = new char[length];
62      memcpy(data, subData, length);      memcpy(data, subData, length);
63      int        ERROR;      int        ERROR;
64      physicsstruct output;      struct physicsstruct output[2] = {0};
65        
66        
67            
68      //Call to the routine that unpack anitocounter events      //Call to the routine that unpack anitocounter events
69      ERROR = ACphysics(length, (unsigned char*) data, &output);      //anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output));
70        anticounter->unpackError = ACphysics(length, (unsigned char*) data, output);
71        
72      //TO BE activated as soon i will know what codes means "error"      //TO BE activated as soon i will know what codes means "error"
73      /*if (ERROR != 0) {      /*if (ERROR != 0) {
74          char *errmsg;          char *errmsg;
# Line 73  void AnticounterReader::RunEvent(int Eve Line 76  void AnticounterReader::RunEvent(int Eve
76              case 1: errmsg = "---------------------";              case 1: errmsg = "---------------------";
77          }          }
78      } else {*/      } else {*/
79          memcpy(anticounter->header, output.header, sizeof(anticounter->header));  
80          anticounter->status = output.status;      for(int i = 0; i<2; i++){
81          anticounter->hitmap = output.hitmap;          memcpy(anticounter->header[i], output[i].header, sizeof(anticounter->header[i]));
82          memcpy(anticounter->regist,     output.regist,    sizeof(anticounter->regist));          anticounter->status[i] = output[i].status;
83          memcpy(anticounter->shift,      output.shift,     sizeof(anticounter->shift));          anticounter->hitmap[i] = output[i].hitmap;
84          memcpy(anticounter->counters,   output.counters,  sizeof(anticounter->counters));          memcpy(anticounter->regist[i],     output[i].regist,    sizeof(output[i].regist));
85          memcpy(anticounter->coinc,      output.coinc,     sizeof(anticounter->coinc));          memcpy(anticounter->shift[i],      output[i].shift,     sizeof(output[i].shift));
86          anticounter->trigg = output.trigg;          memcpy(anticounter->counters[i],   output[i].counters,  sizeof(output[i].counters));
87          memcpy(anticounter->clock,      output.clock,     sizeof(anticounter->clock));          memcpy(anticounter->coinc[i],      output[i].coinc,     sizeof(output[i].coinc));
88          memcpy(anticounter->temp,       output.temp,      sizeof(anticounter->temp));          anticounter->trigg[i] = output[i].trigg;
89          memcpy(anticounter->DAC,        output.DAC,       sizeof(anticounter->DAC));          memcpy(anticounter->clock[i],      output[i].clock,     sizeof(output[i].clock));
90          anticounter->CRC = output.CRC;          memcpy(anticounter->temp[i],       output[i].temp,      sizeof(output[i].temp));
91            memcpy(anticounter->DAC[i],        output[i].DAC,       sizeof(output[i].DAC));
92            anticounter->CRC[i]         = output[i].CRC;
93            anticounter->CRCcheck[i]    = output[i].CRCcheck;
94        }
95    
96      //}      //}
97      delete[] data;      //delete[] data;
98  }  }

Legend:
Removed from v.2.1  
changed lines
  Added in v.3.0

  ViewVC Help
Powered by ViewVC 1.1.23