/[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.4 by kusanagi, Mon Dec 20 14:15:17 2004 UTC revision 2.5 by kusanagi, Tue Dec 21 16:51:23 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.3 2004/12/16 17:33:02 kusanagi Exp $   * $Id: AnticounterReader.cpp,v 2.4 2004/12/20 14:15:17 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, unsigned char[] , physicsstruct*);      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.3 2004/12/16 17:33:02 kusanagi Exp $";      "$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 2.4 2004/12/20 14:15:17 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[2] = {0};          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      anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output));      //anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output));
70        anticounter->ERROR = 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) {
# Line 89  void AnticounterReader::RunEvent(int Eve Line 92  void AnticounterReader::RunEvent(int Eve
92          anticounter->CRC[i]   = output[i].CRC;          anticounter->CRC[i]   = output[i].CRC;
93      }      }
94    
       
   
95      //}      //}
96      //delete[] data;      //delete[] data;
97  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.23