diff --git a/Code/Mantid/Framework/DataHandling/src/SaveAscii.cpp b/Code/Mantid/Framework/DataHandling/src/SaveAscii.cpp index 8e7129591c4c..b8ef58268356 100644 --- a/Code/Mantid/Framework/DataHandling/src/SaveAscii.cpp +++ b/Code/Mantid/Framework/DataHandling/src/SaveAscii.cpp @@ -117,12 +117,14 @@ namespace Mantid } std::string comment = getPropertyValue("CommentIndicator"); std::string errstr = "E"; + std::string errstr2 = ""; std::string comstr = " , "; bool ice = getProperty("ICEFormat"); if (ice) { // overwrite properties so file can be read by ICE - errstr = "error"; + errstr = "Y"; + errstr2 = "_error"; comstr = ", "; writeHeader = true; write_dx = false; @@ -168,13 +170,13 @@ namespace Mantid if (idx.empty()) for(int spec=0;spec::const_iterator spec=idx.begin();spec!=idx.end();++spec) { - file << comstr << "Y" << *spec << comstr << errstr << *spec; + file << comstr << "Y" << *spec << comstr << errstr << *spec << errstr2; if (write_dx) file << " , DX" << *spec; } file << std::endl;