From d224598c9fd5042022184215655ece15d2ee0a9a Mon Sep 17 00:00:00 2001 From: schnetter <> Date: Mon, 27 Oct 2003 13:31:00 +0000 Subject: Change include mechanism for aliased functions in Fortran. One now has to Change include mechanism for aliased functions in Fortran. One now has to #include "cctk_Functions.h" and then use the macro DECLARE_CCTK_FUNCTIONS. darcs-hash:20031027133140-07bb3-d4036d092a34df15aa67213d3e4d691dc0ea72ca.gz --- CarpetExtra/WaveToyExpl/src/finalboundaries.F77 | 6 ++---- CarpetExtra/WaveToyExpl/src/finalstep.F77 | 3 ++- CarpetExtra/WaveToyExpl/src/initsymbound.F77 | 3 ++- CarpetExtra/WaveToyExpl/src/intinit.F77 | 3 ++- CarpetExtra/WaveToyExpl/src/intstep.F77 | 3 ++- CarpetExtra/WaveToyExpl/src/startup.F77 | 3 ++- 6 files changed, 12 insertions(+), 9 deletions(-) (limited to 'CarpetExtra/WaveToyExpl') diff --git a/CarpetExtra/WaveToyExpl/src/finalboundaries.F77 b/CarpetExtra/WaveToyExpl/src/finalboundaries.F77 index 1f128821e..c00960fc3 100644 --- a/CarpetExtra/WaveToyExpl/src/finalboundaries.F77 +++ b/CarpetExtra/WaveToyExpl/src/finalboundaries.F77 @@ -1,8 +1,8 @@ -c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/finalboundaries.F77,v 1.1 2003/06/18 18:24:30 schnetter Exp $ +c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/finalboundaries.F77,v 1.2 2003/10/27 15:31:40 schnetter Exp $ #include "cctk.h" #include "cctk_Arguments.h" -#include "cctk_Faces.h" +#include "cctk_Functions.h" #include "cctk_Parameters.h" subroutine WaveToyExpl_FinalBoundaries (CCTK_ARGUMENTS) @@ -10,8 +10,6 @@ c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/finalb DECLARE_CCTK_ARGUMENTS DECLARE_CCTK_FUNCTIONS DECLARE_CCTK_PARAMETERS - external Boundary_SelectGroupForBC - CCTK_INT Boundary_SelectGroupForBC CCTK_INT bndwidth parameter (bndwidth = 1) character fbound*100 diff --git a/CarpetExtra/WaveToyExpl/src/finalstep.F77 b/CarpetExtra/WaveToyExpl/src/finalstep.F77 index 39c19b42e..b4304d60e 100644 --- a/CarpetExtra/WaveToyExpl/src/finalstep.F77 +++ b/CarpetExtra/WaveToyExpl/src/finalstep.F77 @@ -1,7 +1,8 @@ -c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/finalstep.F77,v 1.1 2003/06/18 18:24:30 schnetter Exp $ +c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/finalstep.F77,v 1.2 2003/10/27 15:31:40 schnetter Exp $ #include "cctk.h" #include "cctk_Arguments.h" +#include "cctk_Functions.h" #include "cctk_Parameters.h" subroutine WaveToyExpl_FinalStep (CCTK_ARGUMENTS) diff --git a/CarpetExtra/WaveToyExpl/src/initsymbound.F77 b/CarpetExtra/WaveToyExpl/src/initsymbound.F77 index 5237b2644..2f4f182fc 100644 --- a/CarpetExtra/WaveToyExpl/src/initsymbound.F77 +++ b/CarpetExtra/WaveToyExpl/src/initsymbound.F77 @@ -1,7 +1,8 @@ -c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/initsymbound.F77,v 1.1 2003/06/18 18:24:30 schnetter Exp $ +c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/initsymbound.F77,v 1.2 2003/10/27 15:31:40 schnetter Exp $ #include "cctk.h" #include "cctk_Arguments.h" +#include "cctk_Functions.h" #include "cctk_Parameters.h" subroutine WaveToyExpl_InitSymBound (CCTK_ARGUMENTS) diff --git a/CarpetExtra/WaveToyExpl/src/intinit.F77 b/CarpetExtra/WaveToyExpl/src/intinit.F77 index 58b406dec..b2ebbaea2 100644 --- a/CarpetExtra/WaveToyExpl/src/intinit.F77 +++ b/CarpetExtra/WaveToyExpl/src/intinit.F77 @@ -1,7 +1,8 @@ -c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/intinit.F77,v 1.1 2003/06/18 18:24:30 schnetter Exp $ +c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/intinit.F77,v 1.2 2003/10/27 15:31:40 schnetter Exp $ #include "cctk.h" #include "cctk_Arguments.h" +#include "cctk_Functions.h" #include "cctk_Parameters.h" subroutine WaveToyExpl_IntInit (CCTK_ARGUMENTS) diff --git a/CarpetExtra/WaveToyExpl/src/intstep.F77 b/CarpetExtra/WaveToyExpl/src/intstep.F77 index 02ecc5e75..909842c2a 100644 --- a/CarpetExtra/WaveToyExpl/src/intstep.F77 +++ b/CarpetExtra/WaveToyExpl/src/intstep.F77 @@ -1,7 +1,8 @@ -c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/intstep.F77,v 1.1 2003/06/18 18:24:30 schnetter Exp $ +c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/intstep.F77,v 1.2 2003/10/27 15:31:40 schnetter Exp $ #include "cctk.h" #include "cctk_Arguments.h" +#include "cctk_Functions.h" #include "cctk_Parameters.h" subroutine WaveToyExpl_IntStep (CCTK_ARGUMENTS) diff --git a/CarpetExtra/WaveToyExpl/src/startup.F77 b/CarpetExtra/WaveToyExpl/src/startup.F77 index 5dbf2c4a6..ce33d9a1c 100644 --- a/CarpetExtra/WaveToyExpl/src/startup.F77 +++ b/CarpetExtra/WaveToyExpl/src/startup.F77 @@ -1,6 +1,7 @@ -c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/startup.F77,v 1.1 2003/06/18 18:24:30 schnetter Exp $ +c $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyExpl/src/startup.F77,v 1.2 2003/10/27 15:31:40 schnetter Exp $ #include "cctk.h" +#include "cctk_Functions.h" #include "cctk_Parameters.h" subroutine WaveToyExpl_Startup -- cgit v1.2.3