Skip to content

Commit

Permalink
mpi_analysis fix for global-fit multi-speed to associate correctly al…
Browse files Browse the repository at this point in the history
…l timestate with runs
  • Loading branch information
gegorbet committed Apr 2, 2020
1 parent e21c8c0 commit efdf514
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
1 change: 1 addition & 0 deletions copypkg-win.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions doc/manual/ultrascan3.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions doc/manual/wrapped-images.lst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions makeall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

Expand Down
4 changes: 3 additions & 1 deletion programs/us_mpi_analysis/us_mpi_parse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ void US_MPI_Analysis::parse( const QString& xmlfile )
qApp->exit();
}

QString tmst_fn;
QXmlStreamReader xml( &file );

while ( ! xml.atEnd() )
Expand All @@ -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
Expand Down
6 changes: 4 additions & 2 deletions updsomo.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit efdf514

Please sign in to comment.