aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
blob: 1353bd4c9a38440dfdf60f9e6bdbe17cdf1ba3c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
 /*@@
   @file      Startup.c
   @date      Fri May 21 1999
   @author    Thomas Radke
   @desc 
   Startup routines for IsoSurfacer.
   @enddesc 
   @history
   @endhistory
 @@*/

#include <stdio.h>

#include "cctk_Flesh.h"
#include "cctk_GHExtensions.h"
#include "cctk_IOMethods.h"
#include "IsoSurfacerInit.h"

#include "cctk_Arguments.h"
#include "cctk_Parameters.h"

static const char *rcsid = "$Id$";
CCTK_FILEVERSION(CactusPUGHIO_IsoSurfacer_Startup_c)

int IsoSurfacer_Startup(void);
void IsoSurfacer_Worker(CCTK_ARGUMENTS);
/*int Iso_SetupServer(int dataport, int clientport, int queue_size, int hunt);
Iso_SetupServer(7051, 7050, 5, 1);  needs to move into InitGH */

int IsoSurfacer_Startup(void)
{
  int IOMethod;
  int IsoSurfacer_GHExtension;

  IsoSurfacer_GHExtension = CCTK_RegisterGHExtension ("IsoSurfacer");
  CCTK_RegisterGHExtensionSetupGH (IsoSurfacer_GHExtension,IsoSurfacer_SetupGH);
  CCTK_RegisterGHExtensionInitGH (IsoSurfacer_GHExtension, IsoSurfacer_InitGH);

  /* Register the IsoSurfacer routine as output method */
  IOMethod = CCTK_RegisterIOMethod ("IsoSurfacer");
  CCTK_RegisterIOMethodOutputGH (IOMethod, IsoSurfacer);
  CCTK_RegisterIOMethodTimeToOutput (IOMethod, IsoSurfacer_TimeForOutput);
  CCTK_RegisterIOMethodTriggerOutput (IOMethod, IsoSurfacer_TriggerOutput);

  return (0);
}

int Iso_Poll(cGH *cctkGH, long sec, long usec);

void IsoSurfacer_Worker(CCTK_ARGUMENTS)
{
  Iso_Poll(cctkGH, 0, 0);
}