www.mooseframework.org
GeneralUserObject.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 "UserObject.h"
15 #include "TransientInterface.h"
17 #include "ReporterInterface.h"
18 
19 /* This class is here to combine the Postprocessor interface and the
20  * base class Postprocessor object along with adding MooseObject to the inheritance tree*/
23  public TransientInterface
24 {
25 public:
27 
29 
31 
34  virtual void threadJoin(const UserObject &) override;
35  virtual void subdomainSetup() override;
37 };
static InputParameters validParams()
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
Interface for objects that needs transient capabilities.
virtual void threadJoin(const UserObject &) override
This method is not used and should not be used in a custom GeneralUserObject.
virtual void subdomainSetup() override
Gets called when the subdomain changes (i.e.
An interface for accessing Materials.
GeneralUserObject(const InputParameters &parameters)
const InputParameters & parameters() const
Get the parameters of the object.
Base class for user-specific data.
Definition: UserObject.h:39