From efdf514c26e3c66a0797eaf35b0757c6c4b0fdf6 Mon Sep 17 00:00:00 2001 From: gegorbet Date: Thu, 2 Apr 2020 08:58:26 -0500 Subject: [PATCH] mpi_analysis fix for global-fit multi-speed to associate correctly all timestate with runs --- copypkg-win.sh | 1 + doc/manual/ultrascan3.txt | 6 +++--- doc/manual/wrapped-images.lst | 4 ++++ makeall.sh | 3 +++ programs/us_mpi_analysis/us_mpi_parse.cpp | 4 +++- updsomo.sh | 6 ++++-- 6 files changed, 18 insertions(+), 6 deletions(-) diff --git a/copypkg-win.sh b/copypkg-win.sh index 0f26ff5e5..65d16154e 100755 --- a/copypkg-win.sh +++ b/copypkg-win.sh @@ -31,6 +31,7 @@ QTDLLS=" \ Qt5Sensors.dll Qt5SerialBus.dll Qt5SerialPort.dll \ Qt5Sql.dll Qt5Svg.dll Qt5WebChannel.dll Qt5WebSockets.dll \ Qt5Widgets.dll Qt5WinExtras.dll Qt5Xml.dll Qt5XmlPatterns.dll \ + assistant.exe \ " echo "Copy lib DLLs to bin" diff --git a/doc/manual/ultrascan3.txt b/doc/manual/ultrascan3.txt index 3fb78cb47..f556c3a00 100644 --- a/doc/manual/ultrascan3.txt +++ b/doc/manual/ultrascan3.txt @@ -1,9 +1,9 @@ UltraScan III -Copyright 1989 - 2017 +Copyright 1989 - 2020 -Copyright © 1989?2017 Borries Demeler, Ph.D. -Copyright © 1997?2017 The University of Texas Health Science Center at San Antonio +Copyright © 1989?2020 Borries Demeler, Ph.D. +Copyright © 1997?2020 The University of Texas Health Science Center at San Antonio All rights reserved. UltraScan is free software; you can redistribute it and/or modify it under the diff --git a/doc/manual/wrapped-images.lst b/doc/manual/wrapped-images.lst index e46c75d3a..f2d336b78 100644 --- a/doc/manual/wrapped-images.lst +++ b/doc/manual/wrapped-images.lst @@ -2,6 +2,10 @@ 2dsa_resplot analyte_details buffer_info +cfa_view-loadraw +cfa_view-loadauc +cfa_view-statsraw +cfa_view-statsauc ddist_combine-selrun fit_men-editupd fit_men-load diff --git a/makeall.sh b/makeall.sh index 69103599a..fa252e9e2 100755 --- a/makeall.sh +++ b/makeall.sh @@ -13,6 +13,9 @@ fi MKARGS="$@" if [ $# -eq 0 ]; then MKARGS="-j 7" + if [ `uname -s|grep -ci "mingw"` -ne 0 ]; then + MKARGS="-j 2" + fi fi export MAKE="make ${MKARGS}" diff --git a/programs/us_mpi_analysis/us_mpi_parse.cpp b/programs/us_mpi_analysis/us_mpi_parse.cpp index 47e179319..8416ca95b 100644 --- a/programs/us_mpi_analysis/us_mpi_parse.cpp +++ b/programs/us_mpi_analysis/us_mpi_parse.cpp @@ -18,6 +18,7 @@ void US_MPI_Analysis::parse( const QString& xmlfile ) qApp->exit(); } + QString tmst_fn; QXmlStreamReader xml( &file ); while ( ! xml.atEnd() ) @@ -38,8 +39,9 @@ void US_MPI_Analysis::parse( const QString& xmlfile ) if ( xml.name() == "dataset" ) { US_SolveSim::DataSet* d = new US_SolveSim::DataSet; - d->tmst_file = QString(""); + d->tmst_file = tmst_fn; // Initialize to blank or previous parse_dataset( xml, d ); + tmst_fn = d->tmst_file; // Init for subsequent dataset if ( parameters.contains( "CG_model" ) ) { // Flag Custom Grid model input diff --git a/updsomo.sh b/updsomo.sh index d9cfb8016..766aa791a 100755 --- a/updsomo.sh +++ b/updsomo.sh @@ -1,9 +1,11 @@ #!/bin/bash # Do SVN update of us3_somo -cd $us3/../us3_somo +##cd $us3/../us3_somo +cd $us3/us_somo pwd -svn up +##svn up +git pull cat develop/include/us_revision.h exit 0