aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetInterp2
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2010-12-03 16:24:06 -0500
committerBarry Wardell <barry.wardell@gmail.com>2011-12-14 18:25:49 +0000
commitcaa5b71a5fa87e9fc3a93c47285d65b8aa418503 (patch)
tree317bc3f4466117416ee908f8f45d3ad18f3f7f14 /Carpet/CarpetInterp2
parent591b29e88d1ab21dda9b0d83c9815bcddd6606fb (diff)
CarpetInterp2: Use thorn NoMPI
Diffstat (limited to 'Carpet/CarpetInterp2')
-rw-r--r--Carpet/CarpetInterp2/interface.ccl2
-rw-r--r--Carpet/CarpetInterp2/src/fasterp.cc12
2 files changed, 10 insertions, 4 deletions
diff --git a/Carpet/CarpetInterp2/interface.ccl b/Carpet/CarpetInterp2/interface.ccl
index 0b1363a6e..24bc256bf 100644
--- a/Carpet/CarpetInterp2/interface.ccl
+++ b/Carpet/CarpetInterp2/interface.ccl
@@ -6,6 +6,8 @@ INCLUDE HEADER: fasterp.hh IN carpetinterp2.hh
+USES INCLUDE HEADER: nompi.h
+
USES INCLUDE HEADER: defs.hh
USES INCLUDE HEADER: typeprops.hh
USES INCLUDE HEADER: vect.hh
diff --git a/Carpet/CarpetInterp2/src/fasterp.cc b/Carpet/CarpetInterp2/src/fasterp.cc
index 6f42fe2b3..249676636 100644
--- a/Carpet/CarpetInterp2/src/fasterp.cc
+++ b/Carpet/CarpetInterp2/src/fasterp.cc
@@ -1,3 +1,6 @@
+#include <cctk.h>
+#include <cctk_Parameters.h>
+
#include <algorithm>
#include <cassert>
#include <cmath>
@@ -6,10 +9,11 @@
#include <iostream>
#include <sstream>
-#include <cctk.h>
-#include <cctk_Parameters.h>
-
-#include <mpi.h>
+#ifdef CCTK_MPI
+# include <mpi.h>
+#else
+# include "nompi.h"
+#endif
#include <carpet.hh>
#include <vect.hh>