https://mooseframework.inl.gov
BlockRestrictionDebugOutput.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 
12 // MOOSE includes
13 #include "Output.h"
14 
15 // Forward declarations
23 {
24 public:
26 
30  static MultiMooseEnum getScopes(std::string default_scopes = "");
31 
33 
34 protected:
37 
40 
43 
47  virtual void output() override;
48 
52  void printBlockRestrictionMap() const;
53 };
BlockRestrictionDebugOutput(const InputParameters &parameters)
void printBlockRestrictionMap() const
Prints block-restriction information.
virtual void output() override
Perform the debugging output.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
A class for producing various debug related outputs.
const NonlinearSystemBase & _nl
Reference to MOOSE's nonlinear system.
Nonlinear system to be solved.
Based class for output objects.
Definition: Output.h:43
const MultiMooseEnum & _scope
multi-enum of object types to show the block-restriction for
static InputParameters validParams()
static MultiMooseEnum getScopes(std::string default_scopes="")
Get the supported scopes of output (e.g., variables, etc.)
const InputParameters & parameters() const
Get the parameters of the object.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...
const libMesh::System & _sys
Reference to libMesh system.