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