Skip to content
Snippets Groups Projects
Commit 81a0ac43 authored by Douglas Serson's avatar Douglas Serson
Browse files

Fix combineAvg after merge

parent 60c8347a
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,11 @@ void ProcessCombineAvg::Process(po::variables_map &vm)
{
if (m_f->m_verbose)
{
cout << "ProcessCombineAvg: Combining new fld into input avg fld" << endl;
if(m_f->m_comm->GetRank() == 0)
{
cout << "ProcessCombineAvg: Combining new fld into input avg fld..."
<< endl;
}
}
ASSERTL0(m_f->m_exp.size() != 0,"No input expansion defined");
......
......@@ -63,6 +63,11 @@ class ProcessCombineAvg : public ProcessModule
/// Write mesh to output file.
virtual void Process(po::variables_map &vm);
virtual std::string GetModuleName()
{
return "ProcessCombineAvg";
}
private:
};
......
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