Changeset 665 for trunk/src/octave


Ignore:
Timestamp:
Apr 6, 2007 6:06:24 PM (17 years ago)
Author:
dkearney
Message:

Updates to Rappture::Utils::progress for all languages
removed the dependancy on Rappture.Units from within number.py, it should only depend on Rappture which will include Rappture.Units
added Rappture.Units as a module to load when people import Rappture in python.
added -V pbs variable to queue.py to include qsub environment variables in the submitted job.
updated setup.py.in to install Rappture.Utils
added progress bar to all app-fermi examples showing how to use the Rappture::Utils::progress function in all languages.
added destructor definitions to Node classes in src2/core

Location:
trunk/src/octave
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/octave/Makefile.in

    r591 r665  
    3939OCTAVE_COMP_ARGS = $(OCT_INCLS) $(LIB_RAPPTURE) $(LIB_SCEW_FLAG)
    4040RpOctave:       rpAddPresets.oct \
     41                        rpUtilsProgress.oct \
    4142                        rpLib.oct \
    4243                        rpLibChildrenByType.oct \
     
    6970                        rpUnitsGetExponent.oct \
    7071                        rpUnitsGetUnits.oct \
    71                         rpUnitsGetUnitsName.oct \
     72                        rpUnitsGetUnitsName.oct
    7273
    7374rpAddPresets.oct:
    7475        $(OCT) rpAddPresets.cc            $(OCTAVE_COMP_ARGS)
     76rpUtilsProgress.oct:
     77        $(OCT) rpUtilsProgress.cc         $(OCTAVE_COMP_ARGS)
    7578rpLib.oct:
    7679        $(OCT) rpLib.cc                   $(OCTAVE_COMP_ARGS)
  • trunk/src/octave/RpOctaveInterface.h

    r511 r665  
    11/*
    22 * ----------------------------------------------------------------------
    3  *  INTERFACE: Rappture-Matlab Bindings Header
     3 *  INTERFACE: Rappture-Octave Bindings Header
    44 *
    55 * ======================================================================
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    7  *  Copyright (c) 2005
     7 *  Copyright (c) 2005-2007
    88 *  Purdue Research Foundation, West Lafayette, IN
    99 * ======================================================================
     
    1313#define _Rp_OCTAVE_HELPER_H
    1414
     15#include "rappture.h"
    1516#include "RpBindingsDict.h"
    16 #include "RpLibrary.h"
    17 #include "RpUnits.h"
    1817
    19 // dont delete this, still working on making it happen
    20 //#include "rappture.h"
    21 
    22 // include the matlab api header
     18// include the octave api header
    2319#include "octave/oct.h"
    2420
     
    2723#endif
    2824
    29 //    int     getIntInput     ( const mxArray* prhs );
    30 //    double  getDoubleInput  ( const mxArray* prhs );
    31 //    char*   getStringInput  ( const mxArray* prhs );
    32 
    3325#ifdef __cplusplus
    3426}
Note: See TracChangeset for help on using the changeset viewer.