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 "LayeredIntegral.h" 11 : 12 : #include "libmesh/mesh_tools.h" 13 : 14 : registerMooseObject("MooseApp", LayeredIntegral); 15 : 16 : InputParameters 17 28938 : LayeredIntegral::validParams() 18 : { 19 28938 : auto params = LayeredIntegralBase<ElementIntegralVariableUserObject>::validParams(); 20 28938 : params.addClassDescription("Compute variable integrals over layers."); 21 28938 : return params; 22 0 : } 23 : 24 182 : LayeredIntegral::LayeredIntegral(const InputParameters & parameters) 25 182 : : LayeredIntegralBase<ElementIntegralVariableUserObject>(parameters) 26 : { 27 182 : }