Chi-Tech
AggregateNodalValuePostProcessor.h
Go to the documentation of this file.
1#ifndef CHITECH_AGGREGATENODALVALUEPOSTPROCESSOR_H
2#define CHITECH_AGGREGATENODALVALUEPOSTPROCESSOR_H
3
4#include "PostProcessor.h"
7
8namespace chi_mesh
9{
10class LogicalVolume;
11}
12namespace chi_physics
13{
14class FieldFunctionGridBased;
15}
16
17namespace chi
18{
19
21 : public PostProcessor,
24{
25public:
28
29 void Execute(const Event& event_context) override;
30
31protected:
32 void Initialize();
33
34 const std::string operation_;
35 bool initialized_ = false;
36 std::vector<uint64_t> cell_local_ids_;
37
38};
39
40} // namespace chi
41
42#endif // CHITECH_AGGREGATENODALVALUEPOSTPROCESSOR_H
static InputParameters GetInputParameters()
bool initialized_
std::vector< uint64_t > cell_local_ids_
AggregateNodalValuePostProcessor(const InputParameters &params)
void Initialize()
void Execute(const Event &event_context) override
const std::string operation_
Definition: PostProcessor.h:28