aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nuc_eos/linterp_many.F9014
1 files changed, 8 insertions, 6 deletions
diff --git a/src/nuc_eos/linterp_many.F90 b/src/nuc_eos/linterp_many.F90
index 42b819f..1fe5983 100644
--- a/src/nuc_eos/linterp_many.F90
+++ b/src/nuc_eos/linterp_many.F90
@@ -1,3 +1,5 @@
+#define CCTK_ERROR(msg) CCTK_Error(__LINE__,__FORTRANFILE__,"EOS_Omni",msg)
+
SUBROUTINE intp3d_many ( x, y, z, f, kt, ft, nx, ny, nz, nvars, xt, yt, zt)
!
implicit none
@@ -43,7 +45,7 @@
real*8 dx,dy,dz,dxi,dyi,dzi,dxyi,dxzi,dyzi,dxyzi
integer n,ix,iy,iz
- IF (kt .GT. ktx) STOP'***KTX**'
+ IF (kt .GT. ktx) call CCTK_ERROR('***KTX**')
!
!
!------ determine spacing parameters of (equidistant!!!) table
@@ -65,7 +67,7 @@
!
!------- loop over all points to be interpolated
!
- dO n = 1, kt
+ do n = 1, kt
!
!------- determine location in (equidistant!!!) table
!
@@ -170,7 +172,7 @@
real*8 dx,dy,dz,dxi,dyi,dzi,dxyi,dxzi,dyzi,dxyzi
integer n,ix,iy,iz
- IF (kt .GT. ktx) STOP'***KTX**'
+ IF (kt .GT. ktx) call CCTK_ERROR('***KTX**')
!
!
!------ determine spacing parameters of (equidistant!!!) table
@@ -192,7 +194,7 @@
!
!------- loop over all points to be interpolated
!
- dO n = 1, kt
+ do n = 1, kt
!
!------- determine location in (equidistant!!!) table
!
@@ -293,7 +295,7 @@
real*8 dx,dy,dz,dxi,dyi,dzi,dxyi,dxzi,dyzi,dxyzi
integer n,ix,iy,iz
- IF (kt .GT. ktx) STOP'***KTX**'
+ IF (kt .GT. ktx) call CCTK_ERROR('***KTX**')
!
!
!------ determine spacing parameters of (equidistant!!!) table
@@ -315,7 +317,7 @@
!
!------- loop over all points to be interpolated
!
- dO n = 1, kt
+ do n = 1, kt
!
!------- determine location in (equidistant!!!) table
!