www.mooseframework.org
GeneralPostprocessor.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 "Postprocessor.h"
14 #include "GeneralUserObject.h"
15 
16 // Forward Declarations
18 
19 template <>
21 
28 {
29 public:
31 
33 
40  virtual void finalize() override {}
41 };
42 
GeneralUserObject.h
GeneralPostprocessor::validParams
static InputParameters validParams()
Definition: GeneralPostprocessor.C:15
GeneralPostprocessor::GeneralPostprocessor
GeneralPostprocessor(const InputParameters &parameters)
Definition: GeneralPostprocessor.C:22
validParams< GeneralPostprocessor >
InputParameters validParams< GeneralPostprocessor >()
MooseObject::parameters
const InputParameters & parameters() const
Get the parameters of the object.
Definition: MooseObject.h:76
InputParameters
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
Definition: InputParameters.h:53
GeneralPostprocessor
This class is here to combine the Postprocessor interface and the base class Postprocessor object alo...
Definition: GeneralPostprocessor.h:27
GeneralUserObject
Definition: GeneralUserObject.h:29
GeneralPostprocessor::finalize
virtual void finalize() override
This is called after execute() and after threadJoin()! This is probably where you want to do MPI comm...
Definition: GeneralPostprocessor.h:40
Postprocessor
Base class for all Postprocessors.
Definition: Postprocessor.h:29
Postprocessor.h