void OutputBase::output() { // Call the various output types, if data exists if (hasNodalVariableOutput()) outputNodalVariables(); if (hasElementalVariableOutput()) outputElementalVariables(); if (hasPostprocessorOutput()) outputPostprocessors(); if (hasScalarOutput()) outputScalarVariables(); }
void AdvancedOutput<T>::output(const ExecFlagType & type) { // Call the various output types, if data exists if (shouldOutput("nodal", type)) { outputNodalVariables(); _last_output_time["nodal"] = T::_time; } if (shouldOutput("elemental", type)) { outputElementalVariables(); _last_output_time["elemental"] = T::_time; } if (shouldOutput("postprocessors", type)) { outputPostprocessors(); _last_output_time["postprocessors"] = T::_time; } if (shouldOutput("vector_postprocessors", type)) { outputVectorPostprocessors(); _last_output_time["vector_postprocessors"] = T::_time; } if (shouldOutput("scalars", type)) { outputScalarVariables(); _last_output_time["scalars"] = T::_time; } if (shouldOutput("system_information", type)) { outputSystemInformation(); _last_output_time["system_information"] = T::_time; } if (shouldOutput("input", type)) { outputInput(); _last_output_time["input"] = T::_time; } }