www.mooseframework.org
Functions
LineSegmentLevelSetAux.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("MooseApp", LineSegmentLevelSetAux)
 
template<>
InputParameters validParams< LineSegmentLevelSetAux > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "MooseApp"  ,
LineSegmentLevelSetAux   
)

◆ validParams< LineSegmentLevelSetAux >()

template<>
InputParameters validParams< LineSegmentLevelSetAux > ( )

Definition at line 18 of file LineSegmentLevelSetAux.C.

19 {
20  InputParameters params = validParams<AuxKernel>();
21  params.addClassDescription(
22  "Auxiliary Kernel that calcuates level set value using line segments' description.");
23  params.addParam<UserObjectName>(
24  "line_segment_cut_set_user_object",
25  "Name of GeometricCutUserObject that gives the line segments information.");
26  return params;
27 }