www.mooseframework.org
ControlOutput.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 #pragma once
11 
12 // MOOSE includes
13 #include "Output.h"
14 
18 class ControlOutput : public Output
19 {
20 public:
22 
27 
28 protected:
32  virtual void output() override;
33 
34 private:
38  void outputActiveObjects();
39 
43  void outputControls();
44 
48  void outputChangedControls();
49 
52 
55 };
void outputControls()
Output list of controllable parameters.
Definition: ControlOutput.C:98
static InputParameters validParams()
Definition: ControlOutput.C:20
bool _show_active_objects
Flag for showing active objects.
Definition: ControlOutput.h:54
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
void outputActiveObjects()
Output a list of active MooseObjects.
Definition: ControlOutput.C:56
Based class for output objects.
Definition: Output.h:43
void outputChangedControls()
Output list of parameters that have been controlled.
bool _clear_after_output
Flag for clearing the controlled parameters after they are output.
Definition: ControlOutput.h:51
const InputParameters & parameters() const
Get the parameters of the object.
Class for output information regarding Controls to the screen.
Definition: ControlOutput.h:18
virtual void output() override
Perform the output of control information.
Definition: ControlOutput.C:44
ControlOutput(const InputParameters &parameters)
Class constructor.
Definition: ControlOutput.C:36