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 : #pragma once 11 : 12 : #include "GeneralPostprocessor.h" 13 : 14 : // libMesh forward declarations 15 : namespace libMesh 16 : { 17 : class System; 18 : class EquationSystems; 19 : } 20 : 21 : class NumDOFs : public GeneralPostprocessor 22 : { 23 : public: 24 : static InputParameters validParams(); 25 : 26 : NumDOFs(const InputParameters & parameters); 27 : 28 1815 : virtual void initialize() override {} 29 1815 : virtual void execute() override {} 30 : virtual Real getValue() const override; 31 : 32 : protected: 33 : enum SystemEnum 34 : { 35 : NL, 36 : AUX, 37 : ALL 38 : }; 39 : 40 : const SystemEnum _system_enum; 41 : 42 : const libMesh::System * _system_pointer; 43 : const EquationSystems * _es_pointer; 44 : };