https://mooseframework.inl.gov
Loading...
Searching...
No Matches
GeneralReporter.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#include "Reporter.h"
13#include "GeneralUserObject.h"
14
19{
20public:
23
24 // These objects are not threaded
25 void threadJoin(const UserObject &) final {}
26
40 bool shouldStore() const override final;
41
42private:
44 const bool _always_store;
45};
Reporter object that has a single execution of the "execute" method for each execute flag.
bool shouldStore() const override final
const bool _always_store
Whether or not this GeneralReporter should always store its information; see shouldStore()
static InputParameters validParams()
void threadJoin(const UserObject &) final
This method is not used and should not be used in a custom GeneralUserObject.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
const InputParameters & parameters() const
Get the parameters of the object.
Definition MooseBase.h:131
Reporter objects allow for the declaration of arbitrary data types that are aggregate values for a si...
Definition Reporter.h:48
Base class for user-specific data.
Definition UserObject.h:20