/[PAMELA software]/yoda/techmodel/Calib1_Ac2Reader.cpp
ViewVC logotype

Diff of /yoda/techmodel/Calib1_Ac2Reader.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 6.2 by kusanagi, Tue May 30 19:10:02 2006 UTC revision 6.3 by mocchiut, Fri Sep 29 10:19:17 2006 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/techmodel/Calib1_Ac2Reader.cpp,v $   * $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/Calib1_Ac2Reader.cpp,v $
3   * $Id: Calib1_Ac2Reader.cpp,v 6.1 2006/05/30 19:10:01 kusanagi Exp $   * $Id: Calib1_Ac2Reader.cpp,v 6.2 2006/05/30 19:10:02 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the Calib1_Ac2Reader class.   * Implementation of the Calib1_Ac2Reader class.
# Line 36  Calib1_Ac2Reader::Calib1_Ac2Reader(void) Line 36  Calib1_Ac2Reader::Calib1_Ac2Reader(void)
36   * Get a string with the version info of the algorithm.   * Get a string with the version info of the algorithm.
37   */   */
38  std::string Calib1_Ac2Reader::GetVersionInfo(void) const {  std::string Calib1_Ac2Reader::GetVersionInfo(void) const {
39    return "$Header: /home/cvsmanager/yoda/techmodel/Calib1_Ac2Reader.cpp,v 6.1 2006/05/30 19:10:01 kusanagi Exp $\n";    return "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/Calib1_Ac2Reader.cpp,v 6.2 2006/05/30 19:10:02 kusanagi Exp $\n";
40  }  }
41    
42  /**  /**
# Line 55  void Calib1_Ac2Reader::Init(PamelaRun *r Line 55  void Calib1_Ac2Reader::Init(PamelaRun *r
55  void Calib1_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){  void Calib1_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){
56      char   *subData = new char[dataLength];      char   *subData = new char[dataLength];
57      struct calibstruct output = {0};      struct calibstruct output = {0};
58        memset(subData,  0, dataLength*sizeof(char));
59      InputFile->read(subData, sizeof(unsigned char)*dataLength);      InputFile->read(subData, sizeof(unsigned char)*dataLength);
60    
61      calib1_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output);      calib1_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output);

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

  ViewVC Help
Powered by ViewVC 1.1.23