aboutsummaryrefslogtreecommitdiff
path: root/CarpetExtra/WaveToyExpl/src/startup.F77
blob: 4753e177ee28d13b556fd7015ec224503bc6e0e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
c     $Header:$

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

      subroutine WaveToyExpl_Startup
      implicit none
      DECLARE_CCTK_FUNCTIONS
      DECLARE_CCTK_PARAMETERS
      integer ierr
      call CCTK_RegisterBanner (ierr, "WaveToyExpl: Evolving a scalar field with explicit intermediate integration steps")
      if (ierr.ne.0) call CCTK_WARN (0, "internal error")
      end