aboutsummaryrefslogtreecommitdiff
path: root/src/macro/TRKK_declare.h
blob: c2fd779412c73f882241b02097bd858522d65e03 (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
/*@@
  @header   TRKK_guts.h
  @date     Jun 98
  @author   Gabrielle Allen
  @desc

  Declarations for macro to calculate the trace of 
  K_lj K^j_i

  @enddesc
@@*/

#ifndef TRKK_DECLARE
#define TRKK_DECLARE

#include "UPPERMET_declare.h"
#include "KK_declare.h"

#ifdef FCODE

/* Output variables */
#undef  TRKK_TRKK
#define TRKK_TRKK trkk_trkk

/* Declare output variables */
       CCTK_REAL TRKK_TRKK

#endif

#ifdef CCODE

/* Output variables */
#undef  TRKK_TRKK
#define TRKK_TRKK trkk_trkk

/* Declare output variables */
double TRKK_TRKK;

#endif

#endif