aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Updated copyright statements. Should probably change these to LGPL, butgoodale2000-02-08
| | | | | | | | | | in the meantime have made it clear that other thorns aren't contaminated by the GPL on these thorns. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@34 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Removing USE_CCTK_ARGUMENTS and USE_CCTK_PARAMETERS since they areallen2000-02-05
| | | | | | | automatically included now git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@33 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* New function and structure namesallen2000-02-03
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@32 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Fixed compiler warnings for assigning const char * to char *tradke2000-02-01
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@31 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Declare all the 'outXXX_every' and 'outXXX_vars' parameters as STEERABLE = ↵tradke2000-02-01
| | | | | | ALWAYS. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@30 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Forget to keep track of how often a parameter was set.tradke2000-02-01
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@29 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Made 'outScalar_vars' and 'outScalar_every' steerable.tradke2000-02-01
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@28 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* cctk_arguments -> cctk_Argumentsallen2000-01-27
| | | | | | | cctk_parameters -> cctk_Parameters git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@27 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Started to make IO parameters steerable. Now this can be done for outInfo_everytradke2000-01-18
| | | | | | | | and outInfo_vars. Also added missing grdocs. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@26 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Removed warning when using an invalid out_style setting.tradke2000-01-17
| | | | | | | This is already fixed by declaring it as a KEYWORD parameter. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@25 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Don't write to output files which couldn't be opened.tradke2000-01-17
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@24 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Don't write to files that could not be openedtradke2000-01-17
| | | | | | | (eg. because of invalid filenames). git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@23 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Copying the "outdir" value as full string to myGH->outdirXXXtradke2000-01-17
| | | | | | | | | | instead of just assigning it the pointer to the global variable. This fixes the bug where the pointer value got invalid after resetting the "outdir" parameter (eg. during recovery). git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@22 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Adding standard headersallen2000-01-13
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@21 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Adding USE_CCTK_PARAMETERSallen2000-01-12
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@20 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* automatic switch into the e-notation if numbers to stdout are getting two ↵lanfer1999-12-16
| | | | | | small/big git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@19 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Moved the test, if storage was assigned to a variable to be output,tradke1999-12-13
| | | | | | | | | | | | | from the TimeToOutput() routines into the lower level WriteOutput() routines. Fixing by that * the behaviour of triggers, where TimeToOutput() is called BEFORE storage is possibly assigned (BR 170) * a potential bug when calling OutputVarAs() where no such test was done before git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@18 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Fixing various things pointed out by compiling with -Wall.goodale1999-11-03
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@16 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Tidying up several things:tradke1999-10-26
| | | | | | | | | | | | | - use ParseVarsForOutput() instead of InitIONum() for parsing the out_vars parameter - decide which output dir shall be used by using CCTK_ParameterInfo() rather than comparing it with its old "outdir" default value - outdirs are always created now (not only if out_vars was non-empty) because IO methods might be invoked via CCTK_OutputVarAs() also - some variables renamed for better readability git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@14 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Changed default values for outdirs from "outdir" to "." so that youtradke1999-10-26
| | | | | | | can have an output dir named "outdir" now. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@13 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Prevent Info_every and Scalar_every to accept a value of 0 from IO::out_every.tradke1999-10-25
| | | | | | | Caused division by zero otherwise ! git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@12 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Tidying header filesallen1999-10-18
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@10 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Changes to header filesallen1999-10-17
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@9 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* More docsallen1999-09-27
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@5 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Documentation for IOBasictradke1999-09-21
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@4 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* This commit was generated by cvs2svn to compensate for changes in r2, whichallen1999-09-21
| | | | | | included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@3 b589c3ab-70e8-4b4d-a09f-cba2dd200880
* Standard project directories initialized by cvs2svn.(no author)1999-09-21
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@1 b589c3ab-70e8-4b4d-a09f-cba2dd200880