summaryrefslogtreecommitdiff
path: root/src/main/Coord.c
Commit message (Collapse)AuthorAge
* Removing warnings from rcsid variables.allen2000-04-17
| | | | | | | Tidied include files a bit, removing a few cctk.h's, so I've introduced a few more warnings to fix git-svn-id: http://svn.cactuscode.org/flesh/trunk@1550 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Removing compiler warningsallen2000-03-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@1505 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Untabified.goodale2000-01-27
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@1312 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Replacing CCTK_WARN with CCTK_Warnallen2000-01-17
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@1271 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added new functionsallen2000-01-11
| | | | | | | | | | | | CCTK_CoordDir CCTK_CoordLocalRange also renamed coordinate routines to all start with CCTK_Coord... Old functions remain but are deprecated git-svn-id: http://svn.cactuscode.org/flesh/trunk@1221 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Check for memory errorallen1999-12-16
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@1199 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Removed tabs from files.goodale1999-11-24
| | | | | | | | | Added @version lines to various header files. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1170 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Various things pointed out by running Insure on the code.goodale1999-10-26
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1109 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Put back CCTK_CoordOriginallen1999-10-14
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@1038 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Adding stuff from the header fileallen1999-10-14
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@1033 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Use strlen instead of sizeof when allocating memory for printing error msgs.tradke1999-09-21
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@979 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Include file name changesallen1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@830 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Renaming functions and adding fortran bindingsallen1999-07-29
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@823 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added lower and upper bound coordinate registration for each coordinateallen1999-07-27
| | | | | | | | | | | | | | | | | | | on each GH. The relevant functions are CCTK_RegisterCoordRange(GH,lower,upper,"name") (this is done in CartGrid3D now after the coords are calculated) then to get at the values CCTK_CoordRange(GH,lower,upper,"name") Note that in C lower and upper are pointers to the values. This only all works for CCTK_REAL coords at the moment. git-svn-id: http://svn.cactuscode.org/flesh/trunk@793 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Routine name changesallen1999-07-25
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@781 17b73243-c579-4c4c-a9d2-2d5706c11dac
* More subroutine name changesallen1999-07-24
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@778 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added routine for registering and getting back the coordinate origin.allen1999-07-18
| | | | | | | | | Not quite finished since at the moment it always tells you that the origin is at zero. This is because I haven't decided whether you should register the coordiante and the origin separately or at the same time. git-svn-id: http://svn.cactuscode.org/flesh/trunk@724 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added fortran binding for CCTK_GetCoordIndex()tradke1999-07-13
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@702 17b73243-c579-4c4c-a9d2-2d5706c11dac
* New names for many of the Group functions which are used by infrastructureallen1999-07-08
| | | | | | | | | thorns and the flesh. The names should be more consistent now. You might want to hold of from this update for a little while until all the thorn changes are in. git-svn-id: http://svn.cactuscode.org/flesh/trunk@688 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Changed CCTK_Warns t CCTK_WARN so that I can try and pass thorught theallen1999-07-03
| | | | | | | | | | | | | | | | | | | | | | | | line number and file name to the Warn message. This hass problems: 1) I really need to include cctk.h then (for some reason) in WarnLevel.h, but then I guess the Fortran name for CCTK_Warn is CCTK_WARN so it doesn't much care for me having a macro for CCTK_WARN. 2) Now I need three fortran strings to be passed into C. This works at the moment on Linux, but not on other machines, so you may need to run with warnings off for a little while. 3) Fortran doesn't get the file name, because (?) it is actually something from a pipe which gets preprocessed and not the file. I have no idea how to fix this. I may just scrap all this, but I want to persevere a bit Oh, there is a new parameter cctk_full_warnings (default yes for now) which gives the old style warnings with no. git-svn-id: http://svn.cactuscode.org/flesh/trunk@618 17b73243-c579-4c4c-a9d2-2d5706c11dac
* missing header filesallen1999-06-25
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@585 17b73243-c579-4c4c-a9d2-2d5706c11dac
* More changes from Joan and his NT nightmares.jmasso1999-06-03
| | | | | | | Please try this on a reasonable OS. git-svn-id: http://svn.cactuscode.org/flesh/trunk@543 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Coordinate registration. Now a GF which represents a coordinateallen1999-04-22
| | | | | | | | | | is registered with a name and a direction. This is so that we can for example register the grid function "grid::x" to be called "x" and then IO uses the grid function called "x" for an x-coordinate for output. git-svn-id: http://svn.cactuscode.org/flesh/trunk@491 17b73243-c579-4c4c-a9d2-2d5706c11dac
* New group stuffallen1999-04-15
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@482 17b73243-c579-4c4c-a9d2-2d5706c11dac
* What I have so far for Coordinate registrationallen1999-04-14
git-svn-id: http://svn.cactuscode.org/flesh/trunk@466 17b73243-c579-4c4c-a9d2-2d5706c11dac