diff --git a/src/DriverUNV/UNV2417_Structure.cxx b/src/DriverUNV/UNV2417_Structure.cxx index a9da97d62..90c4e4514 100644 --- a/src/DriverUNV/UNV2417_Structure.cxx +++ b/src/DriverUNV/UNV2417_Structure.cxx @@ -92,7 +92,15 @@ void UNV2417::ReadGroup(const std::string& myGroupLabel, std::ifstream& in_strea std::getline(in_stream, aRec.GroupName, '\n'); // Finalise previous reading std::getline(in_stream, aRec.GroupName, '\n'); - + + //Erase special char '\r' if needs + std::string aName = aRec.GroupName; + int i = aName.find( "\r" ); + if (i) { + aName.erase (i, 2); + aRec.GroupName = aName; + } + int aElType; int aElId; int aNum;