aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetIOHDF5/src/OutputSlice.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-08-07 18:33:48 -0400
committerErik Schnetter <schnetter@gmail.com>2013-08-07 18:57:56 -0400
commit77e61bb9a06ef271348c96d762935442c7439f0c (patch)
tree23a12a75ff19e45f65f71141efa2bf892e4773da /Carpet/CarpetIOHDF5/src/OutputSlice.cc
parent2dedcb0e7340b0682d530dc26e764408b301e3b8 (diff)
Timers: Move all timer-related code into a new thorn Timers
Diffstat (limited to 'Carpet/CarpetIOHDF5/src/OutputSlice.cc')
-rw-r--r--Carpet/CarpetIOHDF5/src/OutputSlice.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/Carpet/CarpetIOHDF5/src/OutputSlice.cc b/Carpet/CarpetIOHDF5/src/OutputSlice.cc
index 2f67d031b..9a84d1ac3 100644
--- a/Carpet/CarpetIOHDF5/src/OutputSlice.cc
+++ b/Carpet/CarpetIOHDF5/src/OutputSlice.cc
@@ -8,12 +8,12 @@
#include <map>
#include <string>
-#include "cctk.h"
-#include "util_Table.h"
+#include <cctk.h>
+#include <util_Table.h>
#include "CactusBase/IOUtil/src/ioGH.h"
-#include "CarpetTimers.hh"
+#include <Timer.hh>
#include "typeprops.hh"
@@ -234,7 +234,7 @@ namespace CarpetIOHDF5 {
ostringstream timer_name;
timer_name << "OutputGH<" << outdim << ">";
- Carpet::Timer timer(timer_name.str());
+ Timers::Timer timer(timer_name.str());
timer.start();
for (int vi=0; vi<CCTK_NumVars(); ++vi) {