Skip to content
Snippets Groups Projects
Commit 6f6fce59 authored by adrien-matta's avatar adrien-matta
Browse files

* Fix issue in Calibration manager

  - Depending on the file format the last value of a calibration was
    read twice
  - Problem fixed by using while(file>>Databuffer) instead of
    while(file.eof())
parent d4004a49
No related branches found
No related tags found
No related merge requests found
......@@ -178,8 +178,8 @@ void CalibrationManager::LoadParameterFromFile()
if( it!=fToken.end() )
{
vector<double> Coeff ;
while( !theLine.eof() ){
theLine >> DataBuffer ; Coeff.push_back( atof(DataBuffer.c_str()) ) ;
while( theLine >> DataBuffer ){
Coeff.push_back( atof(DataBuffer.c_str()) ) ;
}
// Check this parameter is not already define
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment