aboutsummaryrefslogtreecommitdiff
path: root/src/driver
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-29 16:18:19 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-29 16:18:19 +0000
commit96226e24b7f0856f2cd8f68e9c22adcd7d2946ad (patch)
tree0ff524fe7b3dd7732c455c424273be84082f0928 /src/driver
parentf90849f3ccd99793b71eb19d9c8f9a8c5f628158 (diff)
- rename "config.hh" to "config.h" since it's now C++/C/Fortran
minor code tweaks for better portability (std:: namespace stuff) - switch all (new-style) #include <cstdio> style includes back to (old-style) #include <stdio.h> style - drop all using std::printf; declarations - change all uses of std::min and std::max to jtuti:: instead - drop all explicit std:: qualifiers git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@777 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/driver')
-rw-r--r--src/driver/Newton.cc4
-rw-r--r--src/driver/driver.hh2
-rw-r--r--src/driver/find_horizons.cc4
-rw-r--r--src/driver/horizon_Jacobian.cc4
-rw-r--r--src/driver/initial_guess.cc4
-rw-r--r--src/driver/io.cc4
-rw-r--r--src/driver/setup.cc4
-rw-r--r--src/driver/state.cc4
8 files changed, 15 insertions, 15 deletions
diff --git a/src/driver/Newton.cc b/src/driver/Newton.cc
index 7267088..5ad4267 100644
--- a/src/driver/Newton.cc
+++ b/src/driver/Newton.cc
@@ -7,14 +7,14 @@
#include <stdio.h>
#include <assert.h>
#include <math.h>
-#include <vector>
+#include <vector.h>
#include "util_Table.h"
#include "cctk.h"
#include "cctk_Arguments.h"
+#include "config.h"
#include "stdc.h"
-#include "config.hh"
#include "../jtutil/util.hh"
#include "../jtutil/array.hh"
#include "../jtutil/cpm_map.hh"
diff --git a/src/driver/driver.hh b/src/driver/driver.hh
index 195a7e5..554ce33 100644
--- a/src/driver/driver.hh
+++ b/src/driver/driver.hh
@@ -147,7 +147,7 @@ struct state
// this vector is of size N_horizons+1,
// and is indexed with a "horizon number" hn
// which is (hopefully) always in the range 1 <= hn <= N_horizons
- std::vector<AH_info *> AH_info_ptrs;
+ vector<AH_info *> AH_info_ptrs;
};
//******************************************************************************
diff --git a/src/driver/find_horizons.cc b/src/driver/find_horizons.cc
index 0739a3c..5776937 100644
--- a/src/driver/find_horizons.cc
+++ b/src/driver/find_horizons.cc
@@ -12,15 +12,15 @@
#include <stdio.h>
#include <assert.h>
#include <math.h>
-#include <vector>
+#include <vector.h>
#include "util_Table.h"
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
+#include "config.h"
#include "stdc.h"
-#include "config.hh"
#include "../jtutil/util.hh"
#include "../jtutil/array.hh"
#include "../jtutil/cpm_map.hh"
diff --git a/src/driver/horizon_Jacobian.cc b/src/driver/horizon_Jacobian.cc
index c69e54b..09a6a4d 100644
--- a/src/driver/horizon_Jacobian.cc
+++ b/src/driver/horizon_Jacobian.cc
@@ -14,14 +14,14 @@
#include <stdio.h>
#include <assert.h>
#include <math.h>
-#include <vector>
+#include <vector.h>
#include "util_Table.h"
#include "cctk.h"
#include "cctk_Arguments.h"
+#include "config.h"
#include "stdc.h"
-#include "config.hh"
#include "../jtutil/util.hh"
#include "../jtutil/array.hh"
#include "../jtutil/cpm_map.hh"
diff --git a/src/driver/initial_guess.cc b/src/driver/initial_guess.cc
index 8acf679..2f55312 100644
--- a/src/driver/initial_guess.cc
+++ b/src/driver/initial_guess.cc
@@ -11,15 +11,15 @@
#include <stdio.h>
#include <assert.h>
#include <math.h>
-#include <vector>
+#include <vector.h>
#include "util_Table.h"
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
+#include "config.h"
#include "stdc.h"
-#include "config.hh"
#include "../jtutil/util.hh"
#include "../jtutil/array.hh"
#include "../jtutil/cpm_map.hh"
diff --git a/src/driver/io.cc b/src/driver/io.cc
index 716d331..f1006b7 100644
--- a/src/driver/io.cc
+++ b/src/driver/io.cc
@@ -12,15 +12,15 @@
#include <stdio.h>
#include <assert.h>
#include <math.h>
-#include <vector>
+#include <vector.h>
#include "util_Table.h"
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
+#include "config.h"
#include "stdc.h"
-#include "config.hh"
#include "../jtutil/util.hh"
#include "../jtutil/array.hh"
#include "../jtutil/cpm_map.hh"
diff --git a/src/driver/setup.cc b/src/driver/setup.cc
index 1c45794..cd9efd7 100644
--- a/src/driver/setup.cc
+++ b/src/driver/setup.cc
@@ -18,15 +18,15 @@
#include <stdio.h>
#include <assert.h>
#include <math.h>
-#include <vector>
+#include <vector.h>
#include "util_Table.h"
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
+#include "config.h"
#include "stdc.h"
-#include "config.hh"
#include "../jtutil/util.hh"
#include "../jtutil/array.hh"
#include "../jtutil/cpm_map.hh"
diff --git a/src/driver/state.cc b/src/driver/state.cc
index 4c6c1b8..3d89a2e 100644
--- a/src/driver/state.cc
+++ b/src/driver/state.cc
@@ -4,15 +4,15 @@
#include <stdio.h>
#include <assert.h>
#include <math.h>
-#include <vector>
+#include <vector.h>
#include "util_Table.h"
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
+#include "config.h"
#include "stdc.h"
-#include "config.hh"
#include "../jtutil/util.hh"
#include "../jtutil/array.hh"
#include "../jtutil/cpm_map.hh"