/[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.1 by kusanagi, Sun Oct 17 12:28:46 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.3 2004/09/21 20:24:53 kusanagi Exp $   * $Id: AnticounterReader.cpp,v 2.0 2004/09/21 20:51:22 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 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;
# 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.0 2004/09/21 20:51:22 kusanagi Exp $";
38  }  }
39    
40  /**  /**
# Line 62  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      datastruct output;      physicsstruct output;
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    
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) {

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

  ViewVC Help
Powered by ViewVC 1.1.23