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 "NearestPointLayeredSideIntegralFunctor.h" 11 : 12 : registerMooseObject("MooseApp", NearestPointLayeredSideIntegralFunctor); 13 : 14 : InputParameters 15 14290 : NearestPointLayeredSideIntegralFunctor::validParams() 16 : { 17 : InputParameters params = 18 14290 : NearestPointBase<LayeredSideIntegralFunctor, SideIntegralFunctorUserObject>::validParams(); 19 : 20 14290 : params.addClassDescription( 21 : "Computes layered side integrals of a functor nearest to a set of points."); 22 : 23 14290 : return params; 24 0 : } 25 : 26 13 : NearestPointLayeredSideIntegralFunctor::NearestPointLayeredSideIntegralFunctor( 27 13 : const InputParameters & parameters) 28 13 : : NearestPointBase<LayeredSideIntegralFunctor, SideIntegralFunctorUserObject>(parameters) 29 : { 30 13 : }