/[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.6.2.1 by kusanagi, Sat Mar 5 15:25:06 2005 UTC revision 6.2 by kusanagi, Wed Mar 8 10:53:26 2006 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.6 2005/01/13 14:50:01 kusanagi Exp $   * $Id: AnticounterReader.cpp,v 6.1 2006/03/08 08:17:06 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.6 2005/01/13 14:50:01 kusanagi Exp $";      "$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 6.1 2006/03/08 08:17:06 kusanagi Exp $";
38  }  }
39    
40  /**  /**
# 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       std::stringstream oss;      std::stringstream oss;
62      char *data = new char[length];      char *data = new char[length];
63      memcpy(data, subData, length);      memcpy(data, subData, length);
64      struct physicsstruct output[2] = {0};      struct physicsstruct output[2] = {0};
# Line 69  void AnticounterReader::RunEvent(int Eve Line 69  void AnticounterReader::RunEvent(int Eve
69      //anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output));      //anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output));
70      anticounter->unpackError = ACphysics(length, (unsigned char*) data, output);      anticounter->unpackError = ACphysics(length, (unsigned char*) data, output);
71            
72      char *errmsg;          oss.str("");
73      switch (anticounter->unpackError){          switch (anticounter->unpackError){
74          case 0xFF: errmsg = "data (physics or calibration) from both cards found";              case 0xFF:
75          break;              oss << "Anticounter unpacking: " << "data (physics or calibration) from both cards found";
76          case 0xF0: errmsg = "only data from main card found";              logger->debug(oss.str().c_str());
77          break;              break;
78          case 0x0F: errmsg = "only data from extra card found";              case 0xF0:
79          break;              oss << "Anticounter unpacking: " << "only data from main card found";
80          case 0x00: errmsg = "no data found";              logger->error(oss.str().c_str());
81          break;              break;
82          default: errmsg = "ANTICOUNTER ERRROR CODE UNIDENTIFIED";              case 0x0F:
83      }              oss << "Anticounter unpacking: " << "only data from extra card found";
84      oss.str("");              logger->error(oss.str().c_str());
85      oss << "Fortran77 function tofunpack: " <<  errmsg;              break;
86      logger->warn(oss.str().c_str());              case 0x00:
87                oss << "Anticounter unpacking: " << "no data found";
88                logger->error(oss.str().c_str());
89                break;
90                oss << "Anticounter unpacking: " << "ANTICOUNTER ERRROR CODE UNIDENTIFIED";
91                logger->error(oss.str().c_str());
92            }
93    
94    
95      for(int i = 0; i<2; i++){      for(int i = 0; i<2; i++){
96          memcpy(anticounter->header[i], output[i].header, sizeof(anticounter->header[i]));          memcpy(anticounter->header[i], output[i].header, sizeof(anticounter->header[i]));
# Line 100  void AnticounterReader::RunEvent(int Eve Line 107  void AnticounterReader::RunEvent(int Eve
107          anticounter->CRC[i]         = output[i].CRC;          anticounter->CRC[i]         = output[i].CRC;
108          anticounter->CRCcheck[i]    = output[i].CRCcheck;          anticounter->CRCcheck[i]    = output[i].CRCcheck;
109      }      }
110    
111        //}
112      delete [] data;      delete [] data;
113  }  }

Legend:
Removed from v.2.6.2.1  
changed lines
  Added in v.6.2

  ViewVC Help
Powered by ViewVC 1.1.23