aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/OutputGH.cc
diff options
context:
space:
mode:
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