www.mooseframework.org
Public Member Functions | Static Public Member Functions | List of all members
LevelSetApp Class Reference

#include <LevelSetApp.h>

Inheritance diagram for LevelSetApp:
[legend]

Public Member Functions

 LevelSetApp (InputParameters parameters)
 

Static Public Member Functions

static void registerApps ()
 
static void registerAll (Factory &f, ActionFactory &af, Syntax &s)
 
static void registerObjects (Factory &factory)
 
static void associateSyntax (Syntax &syntax, ActionFactory &action_factory)
 
static void registerExecFlags (Factory &factory)
 

Detailed Description

Definition at line 19 of file LevelSetApp.h.

Constructor & Destructor Documentation

◆ LevelSetApp()

LevelSetApp::LevelSetApp ( InputParameters  parameters)

Definition at line 35 of file LevelSetApp.C.

35  : MooseApp(parameters)
36 {
37  srand(processor_id());
38  LevelSetApp::registerAll(_factory, _action_factory, _syntax);
39 }

Member Function Documentation

◆ associateSyntax()

void LevelSetApp::associateSyntax ( Syntax &  syntax,
ActionFactory &  action_factory 
)
static

Definition at line 70 of file LevelSetApp.C.

71 {
72  mooseDeprecated("use registerAll instead of associateSyntax");
73  Registry::registerActionsTo(action_factory, {"LevelSetApp"});
74 }

Referenced by CombinedApp::associateSyntax(), and ModulesApp::associateSyntax().

◆ registerAll()

void LevelSetApp::registerAll ( Factory &  f,
ActionFactory &  af,
Syntax &  s 
)
static

Definition at line 55 of file LevelSetApp.C.

56 {
57  Registry::registerObjectsTo(f, {"LevelSetApp"});
58  Registry::registerActionsTo(af, {"LevelSetApp"});
60 }

Referenced by LevelSetApp(), LevelSetApp__registerAll(), LevelSetTestApp::registerAll(), ModulesApp::registerAll(), and CombinedApp::registerAll().

◆ registerApps()

void LevelSetApp::registerApps ( )
static

Definition at line 42 of file LevelSetApp.C.

43 {
44  registerApp(LevelSetApp);
45 }

Referenced by LevelSetApp__registerApps().

◆ registerExecFlags()

void LevelSetApp::registerExecFlags ( Factory &  factory)
static

Definition at line 76 of file LevelSetApp.C.

77 {
78  mooseDeprecated("use registerAll instead of registerExecFlags");
79  registerExecFlagsInner(factory);
80 }

Referenced by CombinedApp::registerExecFlags(), and ModulesApp::registerExecFlags().

◆ registerObjects()

void LevelSetApp::registerObjects ( Factory &  factory)
static

Definition at line 63 of file LevelSetApp.C.

64 {
65  mooseDeprecated("use registerAll instead of registerObjects");
66  Registry::registerObjectsTo(factory, {"LevelSetApp"});
67 }

Referenced by CombinedApp::registerObjects(), and ModulesApp::registerObjects().


The documentation for this class was generated from the following files:
LevelSetApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: LevelSetApp.C:55
registerExecFlagsInner
static void registerExecFlagsInner(Factory &factory)
Definition: LevelSetApp.C:48
LevelSetApp
Definition: LevelSetApp.h:19