Changeset 115


Ignore:
Timestamp:
Oct 23, 2005, 1:58:24 PM (19 years ago)
Author:
mmc
Message:

Updated all copyright notices.

Location:
trunk
Files:
2 added
1 deleted
186 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/app-fermi/2.0/fermi.py

    r66 r115  
    55#  to handle I/O for a simple simulator--in this case, one that
    66#  computes Fermi-Dirac statistics.
     7#
    78# ======================================================================
    89#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2005  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1014# ======================================================================
    1115
  • trunk/examples/app-fermi/2.0/fermi_io.py

    r66 r115  
    77#
    88#  This part contains the Rappture interface for the simulator.
     9#
    910# ======================================================================
    1011#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2005  Purdue Research Foundation, West Lafayette, IN
     12#  Copyright (c) 2004-2005  Purdue Research Foundation
     13#
     14#  See the file "license.terms" for information on usage and
     15#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1216# ======================================================================
    1317
  • trunk/examples/app-fermi/fortran/fermi.f

    r83 r115  
    44c  This simple example shows how to use Rappture within a simulator
    55c  written in Fortran.
     6c
    67c ======================================================================
    78c  AUTHOR:  Michael McLennan, Purdue University
    89c  AUTHOR:  Derrick Kearney, Purdue University
    9 c  Copyright (c) 2004-2005
    10 c  Purdue Research Foundation, West Lafayette, IN
     10c  Copyright (c) 2004-2005  Purdue Research Foundation
     11c
     12c  See the file "license.terms" for information on usage and
     13c  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1114c ======================================================================
     15
    1216      program fermi
    1317        IMPLICIT NONE
  • trunk/examples/app-fermi/matlab/fermi.m

    r75 r115  
    44%  This script represents a legacy application that will be left
    55%  intact, but wrapped with a Rappture interface.
     6%
    67% ======================================================================
    78%  AUTHOR:  Michael McLennan, Purdue University
    8 %  Copyright (c) 2004-2005
    9 %  Purdue Research Foundation, West Lafayette, IN
     9%  Copyright (c) 2004-2005  Purdue Research Foundation
     10%
     11%  See the file "license.terms" for information on usage and
     12%  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1013% ======================================================================
     14
    1115disp('Enter the Fermi level (eV):');
    1216Ef = input(' Ef = ');
  • trunk/examples/app-fermi/matlab/fermi.tcl

    r75 r115  
    44#  This simple example shows how to use Rappture to wrap up a
    55#  simulator written in Matlab or some other language.
     6#
    67# ======================================================================
    78#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1013# ======================================================================
    1114package require Rappture
  • trunk/examples/app-fermi/python/fermi.py

    r73 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113import Rappture
  • trunk/examples/app-fermi/tcl/fermi.tcl

    r66 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Rappture
  • trunk/examples/c-example/plot.cc

    r90 r115  
     1// ======================================================================
     2//  Copyright (c) 2004-2005  Purdue Research Foundation
     3//  See the file "license.terms" for information on usage and
     4//  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     5// ======================================================================
     6
    17#include "RpLibrary.h"
    28
  • trunk/examples/c-example/plotc.c

    r104 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *  See the file "license.terms" for information on usage and
     5 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     6 * ======================================================================
     7 */
    18#include "RpLibraryCInterface.h"
    29
  • trunk/examples/graph/graph.py

    r62 r115  
    55#  to handle I/O for a simple simulator--in this case, one that
    66#  evaluates an x/y graph
     7#
    78# ======================================================================
    89#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2005  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1014# ======================================================================
    1115
  • trunk/examples/zoo/boolean/boolean.tcl

    r69 r115  
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/choice/choice.tcl

    r69 r115  
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/cloud/cloud.tcl

    r112 r115  
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/curve/curve.tcl

    r72 r115  
    11# ----------------------------------------------------------------------
    2 #  EXAMPLE: Rappture <boolean> elements
     2#  EXAMPLE: Rappture <curve> elements
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/field/field.tcl

    r112 r115  
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/group/group.tcl

    r72 r115  
    11# ----------------------------------------------------------------------
    2 #  EXAMPLE: Rappture <log> elements
     2#  EXAMPLE: Rappture <group> elements
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/integer/integer.tcl

    r69 r115  
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/loader/loader.tcl

    r72 r115  
    11# ----------------------------------------------------------------------
    2 #  EXAMPLE: Rappture <string> elements
     2#  EXAMPLE: Rappture <loader> elements
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/log/log.tcl

    r72 r115  
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/number/number.tcl

    r69 r115  
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/phase/phase.tcl

    r72 r115  
    11# ----------------------------------------------------------------------
    2 #  EXAMPLE: Rappture <string> elements
     2#  EXAMPLE: Rappture <phase> elements
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/string/string.tcl

    r69 r115  
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/examples/zoo/structure/structure.tcl

    r74 r115  
    11# ----------------------------------------------------------------------
    2 #  EXAMPLE: Rappture <string> elements
     2#  EXAMPLE: Rappture <structure> elements
    33# ======================================================================
    44#  AUTHOR:  Michael McLennan, Purdue University
    5 #  Copyright (c) 2004-2005
    6 #  Purdue Research Foundation, West Lafayette, IN
     5#  Copyright (c) 2004-2005  Purdue Research Foundation
     6#
     7#  See the file "license.terms" for information on usage and
     8#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    79# ======================================================================
    810package require Rappture
  • trunk/gui/apps/driver

    r64 r115  
    1616# ======================================================================
    1717#  AUTHOR:  Michael McLennan, Purdue University
    18 #  Copyright (c) 2004  Purdue Research Foundation, West Lafayette, IN
     18#  Copyright (c) 2004-2005  Purdue Research Foundation
     19#
     20#  See the file "license.terms" for information on usage and
     21#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1922# ======================================================================
    2023#\
  • trunk/gui/apps/rappture

    r64 r115  
    11#!/bin/sh
     2# ----------------------------------------------------------------------
     3#  RAPPTURE
     4#
     5#  This is the main script that most people use to invoke the
     6#  Rappture GUI.  It sets environment variables so that the Rappture
     7#  GUI driver will work properly for the current installation.
     8#
     9# ======================================================================
     10#  AUTHOR:  Michael McLennan, Purdue University
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     15# ======================================================================
    216#
    317# If you install Rappture elsewhere, edit the line below:
     
    721export PATH=$RAPPTURE_INSTALL_DIR/bin:$PATH
    822export LD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$LD_LIBRARY_PATH
     23export DYLD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$DYLD_LIBRARY_PATH
    924exec $RAPPTURE_INSTALL_DIR/bin/driver $*
  • trunk/gui/apps/rerun

    r55 r115  
    2424# ======================================================================
    2525#  AUTHOR:  Derrick Kearney, Purdue University
    26 #  Copyright (c) 2005  Purdue Research Foundation, West Lafayette, IN
     26#  Copyright (c) 2004-2005  Purdue Research Foundation
     27#
     28#  See the file "license.terms" for information on usage and
     29#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    2730# ======================================================================
    2831#
  • trunk/gui/filexfer/filexfer.java

    r50 r115  
    88// ======================================================================
    99//  AUTHOR:  Michael McLennan, Purdue University
    10 //  Copyright (c) 2004-2005
    11 //  Purdue Research Foundation, West Lafayette, IN
     10//  Copyright (c) 2004-2005  Purdue Research Foundation
     11//
     12//  See the file "license.terms" for information on usage and
     13//  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214// ======================================================================
    1315
  • trunk/gui/filexfer/monitor.java

    r50 r115  
    88// ======================================================================
    99//  AUTHOR:  Michael McLennan, Purdue University
    10 //  Copyright (c) 2004-2005
    11 //  Purdue Research Foundation, West Lafayette, IN
     10//  Copyright (c) 2004-2005  Purdue Research Foundation
     11//
     12//  See the file "license.terms" for information on usage and
     13//  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214// ======================================================================
    1315
  • trunk/gui/scripts/analyzer.tcl

    r95 r115  
    1010# ======================================================================
    1111#  AUTHOR:  Michael McLennan, Purdue University
    12 #  Copyright (c) 2004-2005
    13 #  Purdue Research Foundation, West Lafayette, IN
     12#  Copyright (c) 2004-2005  Purdue Research Foundation
     13#
     14#  See the file "license.terms" for information on usage and
     15#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1416# ======================================================================
    1517package require Itk
  • trunk/gui/scripts/animover.tcl

    r11 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/balloon.tcl

    r52 r115  
    1010# ======================================================================
    1111#  AUTHOR:  Michael McLennan, Purdue University
    12 #  Copyright (c) 2004-2005
    13 #  Purdue Research Foundation, West Lafayette, IN
     12#  Copyright (c) 2004-2005  Purdue Research Foundation
     13#
     14#  See the file "license.terms" for information on usage and
     15#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1416# ======================================================================
    1517package require Itk
  • trunk/gui/scripts/booleanentry.tcl

    r82 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/choiceentry.tcl

    r22 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/cloud.tcl

    r95 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itcl
  • trunk/gui/scripts/color.tcl

    r64 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113
  • trunk/gui/scripts/combobox.tcl

    r52 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itk
  • trunk/gui/scripts/contourresult.tcl

    r64 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315package require Itk
  • trunk/gui/scripts/controlOwner.tcl

    r23 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itcl
  • trunk/gui/scripts/controls.tcl

    r111 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/curve.tcl

    r57 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itcl
  • trunk/gui/scripts/deviceEditor.tcl

    r24 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315package require Itk
  • trunk/gui/scripts/deviceLayout1D.tcl

    r81 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itk
  • trunk/gui/scripts/deviceViewer1D.tcl

    r82 r115  
    1010# ======================================================================
    1111#  AUTHOR:  Michael McLennan, Purdue University
    12 #  Copyright (c) 2004-2005
    13 #  Purdue Research Foundation, West Lafayette, IN
     12#  Copyright (c) 2004-2005  Purdue Research Foundation
     13#
     14#  See the file "license.terms" for information on usage and
     15#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1416# ======================================================================
    1517package require Itk
  • trunk/gui/scripts/deviceresult.tcl

    r50 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/dispatcher.tcl

    r11 r115  
    1313# ======================================================================
    1414#  AUTHOR:  Michael McLennan, Purdue University
    15 #  Copyright (c) 2004-2005
    16 #  Purdue Research Foundation, West Lafayette, IN
     15#  Copyright (c) 2004-2005  Purdue Research Foundation
     16#
     17#  See the file "license.terms" for information on usage and
     18#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1719# ======================================================================
    1820package require Itcl
  • trunk/gui/scripts/dropdown.tcl

    r11 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315package require Itk
  • trunk/gui/scripts/dropdownlist.tcl

    r11 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/editor.tcl

    r17 r115  
    2727# ======================================================================
    2828#  AUTHOR:  Michael McLennan, Purdue University
    29 #  Copyright (c) 2004-2005
    30 #  Purdue Research Foundation, West Lafayette, IN
     29#  Copyright (c) 2004-2005  Purdue Research Foundation
     30#
     31#  See the file "license.terms" for information on usage and
     32#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    3133# ======================================================================
    3234package require Itk
  • trunk/gui/scripts/energyLevels.tcl

    r81 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itk
  • trunk/gui/scripts/exec.tcl

    r87 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315package require BLT
  • trunk/gui/scripts/field.tcl

    r87 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itcl
  • trunk/gui/scripts/filexfer.tcl

    r50 r115  
    1717# ======================================================================
    1818#  AUTHOR:  Michael McLennan, Purdue University
    19 #  Copyright (c) 2004-2005
    20 #  Purdue Research Foundation, West Lafayette, IN
     19#  Copyright (c) 2004-2005  Purdue Research Foundation
     20#
     21#  See the file "license.terms" for information on usage and
     22#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    2123# ======================================================================
    2224package require Itcl
  • trunk/gui/scripts/gauge.tcl

    r24 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itk
  • trunk/gui/scripts/getopts.tcl

    r50 r115  
    2323# ======================================================================
    2424#  AUTHOR:  Michael McLennan, Purdue University
    25 #  Copyright (c) 2004-2005
    26 #  Purdue Research Foundation, West Lafayette, IN
     25#  Copyright (c) 2004-2005  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.
    2729# ======================================================================
    2830namespace eval Rappture { # forward declaration }
  • trunk/gui/scripts/grab.tcl

    r52 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315
  • trunk/gui/scripts/groupentry.tcl

    r26 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/integerentry.tcl

    r22 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/loader.tcl

    r50 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/mainwin.tcl

    r87 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itk
  • trunk/gui/scripts/mesh.tcl

    r113 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itcl
  • trunk/gui/scripts/meshresult.tcl

    r64 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/moleculeViewer.tcl

    r74 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/notebook.tcl

    r11 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315package require Itk
  • trunk/gui/scripts/numberentry.tcl

    r22 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/page.tcl

    r44 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itk
  • trunk/gui/scripts/pager.tcl

    r53 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/panes.tcl

    r11 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/postern.tcl

    r52 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315package require BLT
  • trunk/gui/scripts/progress.tcl

    r23 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/radiodial.tcl

    r67 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/result.tcl

    r57 r115  
    1010# ======================================================================
    1111#  AUTHOR:  Michael McLennan, Purdue University
    12 #  Copyright (c) 2004-2005
    13 #  Purdue Research Foundation, West Lafayette, IN
     12#  Copyright (c) 2004-2005  Purdue Research Foundation
     13#
     14#  See the file "license.terms" for information on usage and
     15#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1416# ======================================================================
    1517
  • trunk/gui/scripts/resultset.tcl

    r67 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/resultviewer.tcl

    r64 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315package require Itk
  • trunk/gui/scripts/scroller.tcl

    r95 r115  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2005
    12 #  Purdue Research Foundation, West Lafayette, IN
     11#  Copyright (c) 2004-2005  Purdue Research Foundation
     12#
     13#  See the file "license.terms" for information on usage and
     14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315# ======================================================================
    1416package require Itk
  • trunk/gui/scripts/service.tcl

    r22 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315package require BLT
  • trunk/gui/scripts/spectrum.tcl

    r11 r115  
    1414# ======================================================================
    1515#  AUTHOR:  Michael McLennan, Purdue University
    16 #  Copyright (c) 2004-2005
    17 #  Purdue Research Foundation, West Lafayette, IN
     16#  Copyright (c) 2004-2005  Purdue Research Foundation
     17#
     18#  See the file "license.terms" for information on usage and
     19#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1820# ======================================================================
    1921package require Itk
  • trunk/gui/scripts/spinint.tcl

    r22 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/switch.tcl

    r13 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/table.tcl

    r13 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itcl
  • trunk/gui/scripts/tempgauge.tcl

    r22 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/textentry.tcl

    r69 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/gui/scripts/textresult.tcl

    r64 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/tool.tcl

    r64 r115  
    1010# ======================================================================
    1111#  AUTHOR:  Michael McLennan, Purdue University
    12 #  Copyright (c) 2004-2005
    13 #  Purdue Research Foundation, West Lafayette, IN
     12#  Copyright (c) 2004-2005  Purdue Research Foundation
     13#
     14#  See the file "license.terms" for information on usage and
     15#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1416# ======================================================================
    1517package require BLT
  • trunk/gui/scripts/tooltip.tcl

    r43 r115  
    1717# ======================================================================
    1818#  AUTHOR:  Michael McLennan, Purdue University
    19 #  Copyright (c) 2004-2005
    20 #  Purdue Research Foundation, West Lafayette, IN
     19#  Copyright (c) 2004-2005  Purdue Research Foundation
     20#
     21#  See the file "license.terms" for information on usage and
     22#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    2123# ======================================================================
    2224package require Itk
  • trunk/gui/scripts/tuples.tcl

    r11 r115  
    88# ======================================================================
    99#  AUTHOR:  Michael McLennan, Purdue University
    10 #  Copyright (c) 2004-2005
    11 #  Purdue Research Foundation, West Lafayette, IN
     10#  Copyright (c) 2004-2005  Purdue Research Foundation
     11#
     12#  See the file "license.terms" for information on usage and
     13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214# ======================================================================
    1315package require Itcl
  • trunk/gui/scripts/units.tcl

    r83 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itcl
  • trunk/gui/scripts/valueresult.tcl

    r64 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004-2005
    9 #  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012# ======================================================================
    1113package require Itk
  • trunk/gui/scripts/xyresult.tcl

    r69 r115  
    77# ======================================================================
    88#  AUTHOR:  Michael McLennan, Purdue University
    9 #  Copyright (c) 2004-2005
    10 #  Purdue Research Foundation, West Lafayette, IN
     9#  Copyright (c) 2004-2005  Purdue Research Foundation
     10#
     11#  See the file "license.terms" for information on usage and
     12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113# ======================================================================
    1214package require Itk
  • trunk/include/cee/RpLibraryCInterface.h

    r114 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/include/cee/RpUnitsCInterface.h

    r104 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/include/core/RpAbout.h

    r38 r115  
    1 
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    29#include <iostream>
    310#include <string>
  • trunk/include/core/RpBindingsDict.h

    r104 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick S. Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/include/core/RpBoolean.h

    r38 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include <iostream>
    210#include <string>
  • trunk/include/core/RpChoice.h

    r38 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include <iostream>
    210#include <string>
  • trunk/include/core/RpDict.h

    r106 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include <iostream>
    210#include <cassert>
  • trunk/include/core/RpLibrary.h

    r90 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/include/core/RpNumber.h

    r104 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include <iostream>
    210#include <string>
  • trunk/include/core/RpOption.h

    r38 r115  
    1 
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    29#include <iostream>
    310#include <string>
  • trunk/include/core/RpString.h

    r38 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include <iostream>
    210#include <string>
  • trunk/include/core/RpUnits.h

    r114 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2004-2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
    13 
    1415#include <iostream>
    1516#include <string>
  • trunk/include/core/RpUnitsStd.h

    r104 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19
    210#ifdef __cplusplus
  • trunk/include/core/RpVariable.h

    r38 r115  
    1 
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    29#include <iostream>
    310#include <string>
  • trunk/include/core/rappture.h

    r77 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19// include xml parser headers
    210#include "RpLibrary.h"
  • trunk/include/core/scew_extras.h

    r77 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#ifdef __cplusplus
    210extern "C" {
  • trunk/include/fortran/RpFortranCommon.h

    r83 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/include/fortran/RpLibraryFInterface.h

    r93 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick S. Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/include/fortran/RpLibraryFStubs.h

    r84 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/include/fortran/RpUnitsFInterface.h

    r84 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/include/fortran/RpUnitsFStubs.h

    r84 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/include/matlab/RpMatlabInterface.h

    r97 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/python/README

    r4 r115  
    1010 AUTHORS:
    1111   Michael J. McLennan, Purdue University
    12 ------------------------------------------------------------------------
    13  Copyright (c) 2004  Purdue Research Foundation, West Lafayette, IN
     12   Copyright (c) 2004-2005  Purdue Research Foundation
     13
    1414 See the file "license.terms" for information on usage and
    1515 redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  • trunk/python/Rappture/interface.py

    r96 r115  
    1212# ======================================================================
    1313#  AUTHOR:  Michael McLennan, Purdue University
    14 #  Copyright (c) 2005  Purdue Research Foundation, West Lafayette, IN
     14#  Copyright (c) 2004-2005  Purdue Research Foundation
     15#
     16#  See the file "license.terms" for information on usage and
     17#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1518# ======================================================================
    1619import getopt, sys, os
  • trunk/python/Rappture/library.py

    r43 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2005  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    912# ======================================================================
    1013from xml.dom import minidom
  • trunk/python/Rappture/number.py

    r96 r115  
    44# ======================================================================
    55#  AUTHOR:  Michael McLennan, Purdue University
    6 #  Copyright (c) 2005  Purdue Research Foundation, West Lafayette, IN
     6#  Copyright (c) 2004-2005  Purdue Research Foundation
     7#
     8#  See the file "license.terms" for information on usage and
     9#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    710# ======================================================================
    811import Rappture
  • trunk/python/Rappture/result.py

    r43 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2005  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    912# ======================================================================
    1013import time
  • trunk/src/cee/RpLibraryCInterface.cc

    r93 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/src/cee/RpUnitsCInterface.cc

    r104 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/src/core/RpAbout.cc

    r37 r115  
    1 
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    29 #ifndef _RpABOUT_H
    310     #include "RpAbout.h"
  • trunk/src/core/RpBindingsDict.cc

    r104 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick S. Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
    11 
    1213#include "RpBindingsDict.h"
    1314
  • trunk/src/core/RpBoolean.cc

    r37 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19 #ifndef _RpBOOLEAN_H
    210     #include "RpBoolean.h"
  • trunk/src/core/RpChoice.cc

    r37 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19 #ifndef _RpCHOICE_H
    210     #include "RpChoice.h"
  • trunk/src/core/RpLibrary.cc

    r101 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
    11 
    1213#include "RpLibrary.h"
    1314
  • trunk/src/core/RpNumber.cc

    r104 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19 #ifndef _RpNUMBER_H
    210     #include "RpNumber.h"
  • trunk/src/core/RpOption.cc

    r37 r115  
    1 
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    29 #ifndef _RpOPTION_H
    310     #include "RpOption.h"
  • trunk/src/core/RpResult.cc

    r66 r115  
    99 * ======================================================================
    1010 *  AUTHOR:  Michael McLennan, Purdue University
    11  *  Copyright (c) 2004-2005
    12  *  Purdue Research Foundation, West Lafayette, IN
     11 *  Copyright (c) 2004-2005  Purdue Research Foundation
     12 *
     13 *  See the file "license.terms" for information on usage and
     14 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1315 * ======================================================================
    1416 */
  • trunk/src/core/RpString.cc

    r37 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19 #ifndef _RpSTRING_H
    210     #include "RpString.h"
  • trunk/src/core/RpUnits.cc

    r114 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2004-2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
    13 
    1415#include "RpUnits.h"
    1516
  • trunk/src/core/RpUnitsStd.cc

    r103 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include <RpUnitsStd.h>
    210#include <math.h>
  • trunk/src/core/RpVariable.cc

    r37 r115  
    1 
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    29 #ifndef _RpVARIABLE_H
    310     #include "RpVariable.h"
  • trunk/src/core/scew_extras.c

    r91 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include "scew/scew.h"
    210#include "scew/xelement.h"
  • trunk/src/fortran/RpFortranCommon.c

    r83 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
    13 
    14 
    1515#include "RpFortranCommon.h"
    1616
  • trunk/src/fortran/RpLibraryFInterface.cc

    r97 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/src/fortran/RpLibraryFStubs.c

    r84 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
    11 
    1213#ifdef __cplusplus
    1314    extern "C" {
  • trunk/src/fortran/RpUnitsFInterface.cc

    r104 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/src/fortran/RpUnitsFStubs.c

    r84 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/src/fortran/rappture_fortran.c

    r76 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include "rappture_interface.h"
    210#include "RpFortranCommon.h"
  • trunk/src/matlab/RpMatlabInterface.cc

    r97 r115  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
    8  *  Purdue Research Foundation, West Lafayette, IN
     7 *  Copyright (c) 2004-2005  Purdue Research Foundation
     8 *
     9 *  See the file "license.terms" for information on usage and
     10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    911 * ======================================================================
    1012 */
  • trunk/src/matlab/rpAddPresets.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpChildren.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpChildrenByType.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpConvert.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpConvertDbl.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpConvertObjDbl.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpConvertObjStr.cc

    r97 r115  
    88 * ======================================================================
    99 *  AUTHOR:  Derrick Kearney, Purdue University
    10  *  Copyright (c) 2005
    11  *  Purdue Research Foundation, West Lafayette, IN
     10 *  Copyright (c) 2004-2005  Purdue Research Foundation
     11 *
     12 *  See the file "license.terms" for information on usage and
     13 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1214 * ======================================================================
    1315 */
  • trunk/src/matlab/rpConvertStr.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpDefineUnit.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpElement.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpElementAsComp.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpElementAsId.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpElementAsObject.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpElementAsType.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpFind.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpGet.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpGetBasis.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpGetDouble.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpGetExponent.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpGetString.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpGetUnits.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpGetUnitsName.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpLib.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpMakeMetric.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpNodeComp.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpNodeId.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpNodeType.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpPut.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpPutDouble.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpPutDoubleId.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpPutString.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpPutStringId.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpResult.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/matlab/rpXml.cc

    r97 r115  
    77 * ======================================================================
    88 *  AUTHOR:  Derrick Kearney, Purdue University
    9  *  Copyright (c) 2005
    10  *  Purdue Research Foundation, West Lafayette, IN
     9 *  Copyright (c) 2004-2005  Purdue Research Foundation
     10 *
     11 *  See the file "license.terms" for information on usage and
     12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1113 * ======================================================================
    1214 */
  • trunk/src/python/PyRpUnits.cc

    r104 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include <Python.h>
    210#include <RpUnits.h>
  • trunk/tcl/install.tcl

    r95 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    912# ======================================================================
    1013
  • trunk/tcl/scripts/library.tcl

    r22 r115  
    66# ======================================================================
    77#  AUTHOR:  Michael McLennan, Purdue University
    8 #  Copyright (c) 2004  Purdue Research Foundation, West Lafayette, IN
     8#  Copyright (c) 2004-2005  Purdue Research Foundation
     9#
     10#  See the file "license.terms" for information on usage and
     11#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    912# ======================================================================
    1013package require tdom
  • trunk/test/src/RpBoolean_test.cc

    r40 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include "RpBoolean.h"
    210
  • trunk/test/src/RpChoice_test.cc

    r40 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include "RpChoice.h"
    210
  • trunk/test/src/RpLibraryC_test.c

    r93 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include <stdio.h>
    210#include "RpLibraryCInterface.h"
  • trunk/test/src/RpLibraryF_test.f

    r93 r115  
    66c ======================================================================
    77c  AUTHOR:  Derrick S. Kearney, Purdue University
    8 c  Copyright (c) 2005
    9 c  Purdue Research Foundation, West Lafayette, IN
     8c  Copyright (c) 2004-2005  Purdue Research Foundation
     9c
     10c  See the file "license.terms" for information on usage and
     11c  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012c ======================================================================
    1113      SUBROUTINE  test_element(lib,path)
  • trunk/test/src/RpLibrary_test.cc

    r83 r115  
    66 * libaray, a simple wrapper around the expat parser
    77 *
     8 * Copyright (c) 2004-2005  Purdue Research Foundation
     9 *
     10 * See the file "license.terms" for information on usage and
     11 * redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    812 */
    913
  • trunk/test/src/RpNumber_test.cc

    r104 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include "RpNumber.h"
    210
  • trunk/test/src/RpString_test.cc

    r40 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include "RpString.h"
    210
  • trunk/test/src/RpUnitsC_test.c

    r104 r115  
    66//======================================================================
    77// AUTHOR:  Derrick Kearney, Purdue University
    8 // Copyright (c) 2004-2005
    9 // Purdue Research Foundation, West Lafayette, IN
     8// Copyright (c) 2004-2005  Purdue Research Foundation
     9//
     10// See the file "license.terms" for information on usage and
     11// redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012//======================================================================
    1113//
  • trunk/test/src/RpUnitsF_test.f

    r76 r115  
    66c ======================================================================
    77c  AUTHOR:  Derrick Kearney, Purdue University
    8 c  Copyright (c) 2004-2005
    9 c  Purdue Research Foundation, West Lafayette, IN
     8c  Copyright (c) 2004-2005  Purdue Research Foundation
     9c
     10c  See the file "license.terms" for information on usage and
     11c  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    1012c ======================================================================
    1113      program units_test
  • trunk/test/src/RpUnits_test.cc

    r114 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include "RpUnits.h"
    210
  • trunk/test/src/RpVariable_test.cc

    r40 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include "RpVariable.h"
    210
  • trunk/test/src/rappture_example.c

    r40 r115  
     1/*
     2 * ======================================================================
     3 *  Copyright (c) 2004-2005  Purdue Research Foundation
     4 *
     5 *  See the file "license.terms" for information on usage and
     6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
     7 * ======================================================================
     8 */
    19#include "../include/rappture_interface.h"
    210
Note: See TracChangeset for help on using the changeset viewer.