1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/Calib1_Ac2Reader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/Calib1_Ac2Reader.cpp,v $ |
3 |
* $Id: Calib1_Ac2Reader.cpp,v 2.1 2004/12/16 17:32:57 kusanagi Exp $ |
* $Id: Calib1_Ac2Reader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the Calib1_Ac2Reader class. |
* Implementation of the Calib1_Ac2Reader class. |
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 2.1 2004/12/16 17:32:57 kusanagi Exp $\n"; |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib1_Ac2Reader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $\n"; |
40 |
} |
} |
41 |
|
|
42 |
/** |
/** |
53 |
* Unpack the Calib1_Ac2Reader event from an input file. |
* Unpack the Calib1_Ac2Reader event from an input file. |
54 |
*/ |
*/ |
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[dataLength]; |
/* |
57 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
|
58 |
|
*/ |
|
struct calibstruct output; |
|
|
|
|
|
calib1_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output); |
|
|
calib1_Ac2->ResetDSP = output.ResetDSP; |
|
|
calib1_Ac2->DSPinit = output.DSPinit; |
|
|
calib1_Ac2->DSPprog = output.DSPprog; |
|
|
calib1_Ac2->ModeCalib = output.ModeCalib; |
|
|
calib1_Ac2->SetDAC = output.SetDAC; |
|
|
calib1_Ac2->ModePhysics = output.ModePhysics; |
|
|
|
|
|
*/ |
|
59 |
|
|
60 |
//delete [] subData; |
//delete [] subData; |
61 |
} |
} |