source: trunk/gui/apps/rerun.in @ 1210

Last change on this file since 1210 was 1206, checked in by dkearney, 16 years ago

moving about.tcl to about.in.
moving simsim.tcl to simsim.in.
adding xmldiff, a script to give you teh text differences between two xml files.
reorganized simsim's flags, comparison of xmlfiles works, still need to check creating random inputs for driver files.
adding -nosim flag to rerun to avoid simulations while rerunning a run file. this flag should stay set until we get the "load and continue simulating" functionality working.
adding xmldiff to configure and makefiles

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1#!/bin/sh
2# ----------------------------------------------------------------------
3#  rerun
4#
5#  script to view the output of a previously created run.xml file.
6#  this is just a wrapper around the "rappture -load ..." command
7#  you can use this command to load and compare run.xml files from
8#  the same application. loading xml files from different applciations
9#  will result in undefined actions, and possibly errors.
10#  after loading a run.xml file, you can still enter new values into
11#  the rappture gui and continue simulation experiments.
12#
13#  RUN AS FOLLOWS:
14#    rerun <runFile>,...
15#
16#      <runFile>      - the run.xml file containing an output
17#                       section you would like to re-generate.
18#      ...            - optional comma separated list of runFiles
19#
20#
21#   ex: rerun run1234.xml,run5678.xml,run0123.xml
22#
23# ======================================================================
24#  AUTHOR:  Derrick Kearney, Purdue University
25#  Copyright (c) 2004-2008  Purdue Research Foundation
26#
27#  See the file "license.terms" for information on usage and
28#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
29# ======================================================================
30#
31#
32
33RAPPTURE_INSTALL_DIR=@prefix@
34
35. $RAPPTURE_INSTALL_DIR/bin/rappture.env
36exec $RAPPTURE_INSTALL_DIR/bin/driver -nosim true -load $*
Note: See TracBrowser for help on using the repository browser.