1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

Hadrons: slight improvement on previous commit

This commit is contained in:
Antonin Portelli 2018-08-14 20:18:47 +01:00
parent c4115544a5
commit 7727e81113

View File

@ -110,14 +110,14 @@ void Application::run(void)
LOG(Message) << "RUN ID '" << getPar().runId << "'" << std::endl; LOG(Message) << "RUN ID '" << getPar().runId << "'" << std::endl;
vm().setRunId(getPar().runId); vm().setRunId(getPar().runId);
vm().printContent(); vm().printContent();
env().printContent();
schedule();
printSchedule();
if (!getPar().graphFile.empty()) if (!getPar().graphFile.empty())
{ {
makeFileDir(getPar().graphFile, env().getGrid()); makeFileDir(getPar().graphFile, env().getGrid());
vm().dumpModuleGraph(getPar().graphFile); vm().dumpModuleGraph(getPar().graphFile);
} }
env().printContent();
schedule();
printSchedule();
configLoop(); configLoop();
} }