aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/OutputGH.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2009-09-03 16:19:15 -0500
committerBarry Wardell <barry.wardell@gmail.com>2011-12-14 16:42:31 +0000
commit11c4d98017cbb86d08e15fd1b549180184b58a26 (patch)
tree2546a154c6f7bc0bec87de7316125ae7d1453569 /Carpet/Carpet/src/OutputGH.cc
parentf520477b1c14e02f1495cfa8d3e09f4e21ab34d0 (diff)
Import Carpet
Ignore-this: 309b4dd613f4af2b84aa5d6743fdb6b3
Diffstat (limited to 'Carpet/Carpet/src/OutputGH.cc')
-rw-r--r--Carpet/Carpet/src/OutputGH.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/Carpet/Carpet/src/OutputGH.cc b/Carpet/Carpet/src/OutputGH.cc
index 11b611754..52a877390 100644
--- a/Carpet/Carpet/src/OutputGH.cc
+++ b/Carpet/Carpet/src/OutputGH.cc
@@ -3,13 +3,13 @@
#include <cstdlib>
#include <sstream>
-#include "cctk.h"
-#include "cctk_Parameters.h"
+#include <cctk.h>
+#include <cctk_Parameters.h>
-#include "dist.hh"
+#include <dist.hh>
-#include "carpet.hh"
-#include "Timers.hh"
+#include <carpet.hh>
+#include <Timers.hh>
@@ -42,18 +42,18 @@ namespace Carpet {
IOMethod const * const method = CCTK_IOMethod (handle);
assert (method);
- if (not timers.at(handle)) {
+ if (not timers.AT(handle)) {
ostringstream buf;
buf << "OutputGH"
<< "::" << method->implementation
<< "::" << method->name
<< " [" << handle << "]";
- timers.at(handle) = new Timer (buf.str().c_str());
+ timers.AT(handle) = new Timer (buf.str().c_str());
}
- timers.at(handle)->start();
+ timers.AT(handle)->start();
num_vars += method->OutputGH (cctkGH);
- timers.at(handle)->stop();
+ timers.AT(handle)->stop();
} // for handle