aboutsummaryrefslogtreecommitdiff
path: root/CarpetExtra/WaveToyFO/src/startup.F77
blob: ae38706af112c8f0acafed98c71f3bbf03a7992d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
c     $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyFO/src/startup.F77,v 1.2 2003/10/27 15:31:41 schnetter Exp $

#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"

      subroutine WaveToyFO_Startup
      implicit none
      DECLARE_CCTK_FUNCTIONS
      DECLARE_CCTK_PARAMETERS
      integer ierr
      call CCTK_RegisterBanner (ierr, "WaveToyFO: Evolving a scalar field as a first order system")
      if (ierr.ne.0) call CCTK_WARN (0, "internal error")
      end