aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/th.hh
diff options
context:
space:
mode:
authorschnetter <>2003-01-03 14:49:00 +0000
committerschnetter <>2003-01-03 14:49:00 +0000
commitd5cb73a42d61d3565e6ef52bac69e7ab84a7a821 (patch)
treee6ca1fea7027d660f952c5611d8caa6941723f0f /Carpet/CarpetLib/src/th.hh
parent58469c24e957c469d88961e2fe3029f9e4891f3a (diff)
Removed the "dimgeneric_*" data types from CarpetLib. They were never
Removed the "dimgeneric_*" data types from CarpetLib. They were never really used anyway. Changed "th" into "th<D>". Renamed "generic_*" to "g*". Propagated these changes to all other places. darcs-hash:20030103144936-07bb3-c4d74d2d94a56a898f9bb735666eefc01e2610e2.gz
Diffstat (limited to 'Carpet/CarpetLib/src/th.hh')
-rw-r--r--Carpet/CarpetLib/src/th.hh36
1 files changed, 10 insertions, 26 deletions
diff --git a/Carpet/CarpetLib/src/th.hh b/Carpet/CarpetLib/src/th.hh
index 61d489d6a..85d028ac3 100644
--- a/Carpet/CarpetLib/src/th.hh
+++ b/Carpet/CarpetLib/src/th.hh
@@ -1,23 +1,4 @@
-/***************************************************************************
- th.hh - Time Hierarchy
- information about time levels
- -------------------
- begin : Sun Jun 11 2000
- copyright : (C) 2000 by Erik Schnetter
- email : schnetter@astro.psu.edu
-
- $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/th.hh,v 1.8 2002/09/25 15:49:17 schnetter Exp $
-
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
+// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/th.hh,v 1.9 2003/01/03 15:49:36 schnetter Exp $
#ifndef TH_HH
#define TH_HH
@@ -30,27 +11,29 @@
#include "cctk.h"
#include "defs.hh"
-#include "dggh.hh"
+#include "gh.hh"
using namespace std;
// Forward declaration
-class th;
+template<int D> class th;
// Output
-ostream& operator<< (ostream& os, const th& t);
+template<int D>
+ostream& operator<< (ostream& os, const th<D>& t);
// The time hierarchy (information about the current time)
+template<int D>
class th {
public: // should be readonly
// Fields
- dimgeneric_gh *h; // hierarchy
+ gh<D> *h; // hierarchy
private:
@@ -61,7 +44,7 @@ private:
public:
// Constructors
- th (dimgeneric_gh* h, const CCTK_REAL basedelta);
+ th (gh<D>* h, const CCTK_REAL basedelta);
// Destructors
~th ();
@@ -110,7 +93,8 @@ public:
-inline ostream& operator<< (ostream& os, const th& t) {
+template<int D>
+inline ostream& operator<< (ostream& os, const th<D>& t) {
t.output(os);
return os;
}