Skip to content
Snippets Groups Projects
Commit d6033845 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Added timer to sum_hills

It is difficult to remove the main timer, but at least I
added a timer that makes sense

Fixes #194
parent 2022e1d2
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,7 @@
#include "tools/BiasRepresentation.h"
#include "tools/File.h"
#include "tools/Tools.h"
#include "tools/Stopwatch.h"
#include <iostream>
using namespace std;
......@@ -507,6 +508,10 @@ historep(NULL)
if(integratehills) hillsHandler=new FilesHandler(hillsFiles,parallelread,*this, log);
if(integratehisto) histoHandler=new FilesHandler(histoFiles,parallelread,*this, log);
Stopwatch sw;
sw.start("0 Summing hills");
// read a number of hills and put in the bias representation
int nfiles=0;
bool ibias=integratehills; bool ihisto=integratehisto;
......@@ -619,6 +624,10 @@ historep(NULL)
if(hillsHandler) delete hillsHandler;
if(histoHandler) delete histoHandler;
sw.stop("0 Summing hills");
log<<sw;
return;
}
// just an initialization but you need to do something on the fly?: need to connect with a metad run and its grid representation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment