https://mooseframework.inl.gov
Loading...
Searching...
No Matches
BoolControlDataValuePostprocessor.h
Go to the documentation of this file.
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#pragma once
11
13#include "ControlData.h"
14
15class THMProblem;
16
21{
22public:
24
25 virtual void initialize() override;
26 virtual Real getValue() const override;
27 virtual void execute() override;
28
29protected:
32 const std::string & _control_data_name;
35
36public:
38};
Reads a boolean control value data and prints it out.
const std::string & _control_data_name
The name of the control data value.
const ControlData< bool > * _control_data_value
The boolean value of the control data.
Concrete definition of a parameter value for a specified type.
Definition ControlData.h:92
const InputParameters & parameters() const
Specialization of FEProblem to run with component subsystem.
Definition THMProblem.h:19