mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Tweak Session YAML output to print sane floats instead of full precision.
This commit is contained in:
parent
5b959efc37
commit
355a85a1fc
@ -174,7 +174,14 @@ void SessionToYaml(QString filepath, Session* session)
|
|||||||
QList<ChannelID> keys = session->settings.keys();
|
QList<ChannelID> keys = session->settings.keys();
|
||||||
std::sort(keys.begin(), keys.end());
|
std::sort(keys.begin(), keys.end());
|
||||||
for (QList<ChannelID>::iterator key = keys.begin(); key != keys.end(); key++) {
|
for (QList<ChannelID>::iterator key = keys.begin(); key != keys.end(); key++) {
|
||||||
out << " " << settingChannel(*key) << ": " << session->settings[*key].toString() << endl;
|
QVariant & value = session->settings[*key];
|
||||||
|
QString s;
|
||||||
|
if ((QMetaType::Type) value.type() == QMetaType::Float) {
|
||||||
|
s = QString::number(value.toFloat()); // Print the shortest accurate representation rather than QVariant's full precision.
|
||||||
|
} else {
|
||||||
|
s = value.toString();
|
||||||
|
}
|
||||||
|
out << " " << settingChannel(*key) << ": " << s << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
out << " events:" << endl;
|
out << " events:" << endl;
|
||||||
|
Loading…
Reference in New Issue
Block a user