aboutsummaryrefslogtreecommitdiff
path: root/src/unphysical_to_physical_int.F
blob: b53fa0b70af4d249bf79f30f8547a41c79b89abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "cctk.h"

      MODULE unphysical_to_physical_int

c     ------------------------------------------------------------------

      INTERFACE

      SUBROUTINE unphysical_to_physical(grr,grt,grp,gtt,gtp,gpp,dgtt,
     &     dgtp,dgpp,Psis,dPsis,Psi_power)
      IMPLICIT NONE
      INTEGER :: 
     &     Psi_power
      CCTK_REAL, DIMENSION (:,:) :: 
     &     grr,grt,grp,gtt,gtp,gpp,dgtt,dgtp,dgpp,Psis,dPsis
      END SUBROUTINE
      
      END INTERFACE
      
      END MODULE unphysical_to_physical_int