]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Precision of output time in error message.
authorageay <ageay>
Thu, 28 Jun 2012 13:57:32 +0000 (13:57 +0000)
committerageay <ageay>
Thu, 28 Jun 2012 13:57:32 +0000 (13:57 +0000)
src/MEDLoader/MEDFileField.cxx

index 5340bb3e4e48cc5b7945b486c75bd9185996bd9e..54f391f853927d91f58271937c033045660a5a15 100644 (file)
@@ -3820,7 +3820,8 @@ int MEDFileFieldMultiTSWithoutDAS::getPosOfTimeStep(int iteration, int order) co
 int MEDFileFieldMultiTSWithoutDAS::getPosGivenTime(double time, double eps) const throw(INTERP_KERNEL::Exception)
 {
   int ret=0;
-  std::ostringstream oss; oss << "MEDFileFieldMultiTSWithoutDAS::getPosGivenTime : No such time step " << time << "! \nPossibilities are : "; 
+  std::ostringstream oss; oss << "MEDFileFieldMultiTSWithoutDAS::getPosGivenTime : No such time step " << time << "! \nPossibilities are : ";
+  oss.precision(15);
   for(std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileField1TSWithoutDAS>  >::const_iterator it=_time_steps.begin();it!=_time_steps.end();it++,ret++)
     {
       const MEDFileField1TSWithoutDAS *tmp(*it);