aboutsummaryrefslogtreecommitdiff
path: root/CarpetExtra/WaveToyMoL/src/startup.F77
blob: cd539c6c3e38c38fb6eb35fd0638ec7e044f385d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "cctk.h"
#include "cctk_Functions.h"
#include "cctk_Parameters.h"

      subroutine WaveToyMoL_Startup
      implicit none
      DECLARE_CCTK_FUNCTIONS
      DECLARE_CCTK_PARAMETERS
      integer ierr
      call CCTK_RegisterBanner (ierr, "WaveToyMoL: Evolving a scalar field with MoL")
      if (ierr.ne.0) call CCTK_WARN (0, "internal error")
      end