Skip to content
Snippets Groups Projects
Commit feb8a818 authored by Xavier ELATTAOUI's avatar Xavier ELATTAOUI
Browse files

SNAPSHOT version for the moment !

parent 135f7f8d
Branches
Tags
No related merge requests found
......@@ -8,7 +8,7 @@
</parent>
<groupId>fr.soleil.lib</groupId>
<artifactId>Electrometers-${aol}-${library}-${mode}</artifactId>
<version>2.5.2</version>
<version>2.5.3-SNAPSHOT</version>
<packaging>nar</packaging>
<name>Electrometers library</name>
<description>Electrometers library</description>
......@@ -34,4 +34,18 @@
</build>
<dependencies>
</dependencies>
<developers>
<developer>
<id>elattaoui</id>
<name>Xavier Elattaoui</name>
<email>xavier.elattaoui@synchrotron-soleil.fr</email>
<url>http://controle/~hardion/</url>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>developper</role>
</roles>
<timezone>1</timezone>
</developer>
</developers>
</project>
......@@ -469,12 +469,16 @@ short numberOfData = 0;
//-
posBeg = 0;
posEnd = datalist.find(',', posBeg);
//-DEBUG std::cout << "\t*****::buildDataList -> argin :\n$" << datalist << "$" << std::endl;
//-DEBUG
std::cout << "\t*****::buildDataList -> argin :\n$" << datalist << "$" << std::endl;
//- there is just one value
if(posEnd == std::string::npos)
{
argout.push_back( XString<double>::convertFromString(datalist) );
//-DEBUG std::cout << "\t*****::buildDataList -> JUST ONE DATA :$" << datalist << "$" << std::endl;
//-DEBUG
std::cout << "\t*****::buildDataList -> JUST ONE DATA :$" << datalist << "$" << std::endl;
}
else
{
......@@ -486,7 +490,8 @@ short numberOfData = 0;
{
dataStr = datalist.substr(posBeg,posEnd);
argout.push_back( XString<double>::convertFromString(dataStr) );
//-DEBUG std::cout << "\t*****::buildDataList -> FULL OF DATA : " << i << " -> $" << argout[i] << "$" << std::endl;
//-DEBUG
std::cout << "\t*****::buildDataList -> FULL OF DATA : " << i << " -> $" << argout[i] << "$" << std::endl;
posBeg = posEnd+1;
posEnd = datalist.find(',', posBeg);
......@@ -497,7 +502,6 @@ short numberOfData = 0;
argout.push_back( XString<double>::convertFromString(dataStr) );
break;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment