/[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.3 by kusanagi, Thu Dec 16 17:33:02 2004 UTC revision 2.4 by kusanagi, Mon Dec 20 14:15:17 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 2.2 2004/12/03 22:08:12 kusanagi Exp $   * $Id: AnticounterReader.cpp,v 2.3 2004/12/16 17:33:02 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the AnticounterReader class.   * Implementation of the AnticounterReader class.
# 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.2 2004/12/03 22:08:12 kusanagi Exp $";      "$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 2.3 2004/12/16 17:33:02 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 = {0};          physicsstruct output[2] = {0};    
65            
66      //Call to the routine that unpack anitocounter events      //Call to the routine that unpack anitocounter events
67      //anticounter->ERROR = ACphysics(length, (unsigned char*) data, &output);      anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output));
68            
69      //TO BE activated as soon i will know what codes means "error"      //TO BE activated as soon i will know what codes means "error"
70      /*if (ERROR != 0) {      /*if (ERROR != 0) {
# Line 74  void AnticounterReader::RunEvent(int Eve Line 74  void AnticounterReader::RunEvent(int Eve
74          }          }
75      } else {*/      } else {*/
76    
77      /*      for(int i = 0; i<2; i++){
78          memcpy(anticounter->header, output.header, sizeof(anticounter->header));          memcpy(anticounter->header[i], output[i].header, sizeof(anticounter->header[i]));
79          anticounter->status = output.status;          anticounter->status[i] = output[i].status;
80          anticounter->hitmap = output.hitmap;          anticounter->hitmap[i] = output[i].hitmap;
81          memcpy(anticounter->regist,     output.regist,    sizeof(output.regist));          memcpy(anticounter->regist[i],     output[i].regist,    sizeof(output[i].regist));
82          memcpy(anticounter->shift,      output.shift,     sizeof(output.shift));          memcpy(anticounter->shift[i],      output[i].shift,     sizeof(output[i].shift));
83          memcpy(anticounter->counters,   output.counters,  sizeof(output.counters));          memcpy(anticounter->counters[i],   output[i].counters,  sizeof(output[i].counters));
84          memcpy(anticounter->coinc,      output.coinc,     sizeof(output.coinc));          memcpy(anticounter->coinc[i],      output[i].coinc,     sizeof(output[i].coinc));
85          anticounter->trigg = output.trigg;          anticounter->trigg[i] = output[i].trigg;
86          memcpy(anticounter->clock,      output.clock,     sizeof(output.clock));          memcpy(anticounter->clock[i],      output[i].clock,     sizeof(output[i].clock));
87          memcpy(anticounter->temp,       output.temp,      sizeof(output.temp));          memcpy(anticounter->temp[i],       output[i].temp,      sizeof(output[i].temp));
88          memcpy(anticounter->DAC,        output.DAC,       sizeof(output.DAC));          memcpy(anticounter->DAC[i],        output[i].DAC,       sizeof(output[i].DAC));
89          anticounter->CRC   = output.CRC;          anticounter->CRC[i]   = output[i].CRC;
90          anticounter->ERROR = ERROR;      }
91      */  
92        
93    
94      //}      //}
95      //delete[] data;      //delete[] data;

Legend:
Removed from v.2.3  
changed lines
  Added in v.2.4

  ViewVC Help
Powered by ViewVC 1.1.23