52 Poco::AutoPtr<Poco::XML::Element> currentResultElement = m_OutputXML->createElement(resultNode->GetName());
53 m_OutputXMLRoot->appendChild(currentResultElement);
55 this->AddCurrentTimeAttributes(currentResultElement);
57 const mitk::PropertyList::PropertyMap* propertyMap = resultNode->GetPropertyList()->GetMap();
59 for ( mitk::PropertyList::PropertyMap::const_iterator it = propertyMap->begin();
60 it != propertyMap->end(); ++it )
62 size_t prefixSize = m_KeyPrefix.size();
65 if ( ! m_KeyPrefix.empty() && it->first.substr(0, prefixSize) != m_KeyPrefix ) {
continue; }
67 if ( prefixSize >= it->first.size() )
69 MITK_ERROR(
"USNavigationExperimentLogging") <<
"Property key must contain more characters then the key prefix.";
70 mitkThrow() <<
"Property key must contain more characters then the key prefix.";
75 Poco::AutoPtr<Poco::XML::Element> mapElement = m_OutputXML->createElement(it->first.substr(prefixSize, it->first.size() - prefixSize));
76 currentResultElement->appendChild(mapElement);
79 mapElement->setAttribute(
"class", it->second->GetNameOfClass());
82 Poco::AutoPtr<Poco::XML::Text> value = m_OutputXML->createTextNode(it->second->GetValueAsString());
83 mapElement->appendChild(value);
86 this->WriteXmlToFile();
92 std::stringstream stringStreamTime;
93 stringStreamTime.precision(2);
94 stringStreamTime << std::fixed << m_RealTimeClock->GetTimeInSeconds();
95 element->setAttribute(
"time", stringStreamTime.str());
98 std::stringstream stringStreamExperimentTime;
99 stringStreamExperimentTime.precision(2);
100 stringStreamExperimentTime << std::fixed << m_RealTimeClock->GetTimeInSeconds() - m_StartTime;
101 element->setAttribute(
"duration", stringStreamExperimentTime.str());