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

#include <StochasticToolsApp.h>

Inheritance diagram for StochasticToolsApp:
[legend]

Public Member Functions

 StochasticToolsApp (InputParameters parameters)
 
virtual ~StochasticToolsApp ()
 

Static Public Member Functions

static InputParameters validParams ()
 
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 StochasticToolsApp.h.

Constructor & Destructor Documentation

◆ StochasticToolsApp()

StochasticToolsApp::StochasticToolsApp ( InputParameters  parameters)

Definition at line 30 of file StochasticToolsApp.C.

30  : MooseApp(parameters)
31 {
32  StochasticToolsApp::registerAll(_factory, _action_factory, _syntax);
33 }

◆ ~StochasticToolsApp()

StochasticToolsApp::~StochasticToolsApp ( )
virtual

Definition at line 35 of file StochasticToolsApp.C.

35 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 58 of file StochasticToolsApp.C.

59 {
60  mooseDeprecated("use registerAll instead of associateSyntax");
61  Registry::registerActionsTo(action_factory, {"StochasticToolsApp"});
62 }

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

◆ registerAll()

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

Definition at line 38 of file StochasticToolsApp.C.

39 {
40  Registry::registerObjectsTo(f, {"StochasticToolsApp"});
41  Registry::registerActionsTo(af, {"StochasticToolsApp"});
42 }

Referenced by CombinedApp::registerAll(), ModulesApp::registerAll(), StochasticToolsTestApp::registerAll(), StochasticToolsApp(), and StochasticToolsApp__registerAll().

◆ registerApps()

void StochasticToolsApp::registerApps ( )
static

Definition at line 45 of file StochasticToolsApp.C.

46 {
47  registerApp(StochasticToolsApp);
48 }

Referenced by StochasticToolsApp__registerApps().

◆ registerExecFlags()

void StochasticToolsApp::registerExecFlags ( Factory &  factory)
static

Definition at line 65 of file StochasticToolsApp.C.

66 {
67  mooseDeprecated("use registerAll instead of registerExecFlags");
68 }

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

◆ registerObjects()

void StochasticToolsApp::registerObjects ( Factory &  factory)
static

Definition at line 51 of file StochasticToolsApp.C.

52 {
53  mooseDeprecated("use registerAll instead of registerObjects");
54  Registry::registerObjectsTo(factory, {"StochasticToolsApp"});
55 }

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

◆ validParams()

InputParameters StochasticToolsApp::validParams ( )
static

Definition at line 18 of file StochasticToolsApp.C.

19 {
20  InputParameters params = MooseApp::validParams();
21 
22  // Do not use legacy DirichletBC, that is, set DirichletBC default for preset = true
23  params.set<bool>("use_legacy_dirichlet_bc") = false;
24 
25  return params;
26 }

Referenced by StochasticToolsTestApp::validParams().


The documentation for this class was generated from the following files:
StochasticToolsApp
Definition: StochasticToolsApp.h:19
validParams
InputParameters validParams()
StochasticToolsApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: StochasticToolsApp.C:38