Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 3 : //* 4 : //* All rights reserved, see COPYRIGHT for full restrictions 5 : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT 6 : //* 7 : //* Licensed under LGPL 2.1, please see LICENSE for details 8 : //* https://www.gnu.org/licenses/lgpl-2.1.html 9 : 10 : #include "EmptyPostprocessor.h" 11 : 12 : #include "libmesh/parallel.h" 13 : 14 : registerMooseObject("MooseApp", EmptyPostprocessor); 15 : 16 : InputParameters 17 14313 : EmptyPostprocessor::validParams() 18 : { 19 14313 : InputParameters params = GeneralPostprocessor::validParams(); 20 14313 : params.addClassDescription("A postprocessor object that returns a value of zero."); 21 14313 : return params; 22 0 : } 23 : 24 24 : EmptyPostprocessor::EmptyPostprocessor(const InputParameters & parameters) 25 24 : : GeneralPostprocessor(parameters) 26 : { 27 24 : }