www.mooseframework.org
GMVOutput.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 "OversampleOutput.h"
14 
19 {
20 public:
22 
27 
28 protected:
33  virtual void output() override;
34 
39  virtual std::string filename() override;
40 
41 private:
43  bool _binary;
44 };
Based class for providing re-positioning and oversampling support to output objects.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
virtual std::string filename() override
Returns the current filename, this method handles adding the timestep suffix.
Definition: GMVOutput.C:53
static InputParameters validParams()
Definition: GMVOutput.C:19
virtual void output() override
Overload the Output::output method, this is required for GMVOutput output due to the method utilized ...
Definition: GMVOutput.C:45
bool _binary
Flag for binary output.
Definition: GMVOutput.h:43
const InputParameters & parameters() const
Get the parameters of the object.
Class for output data to the GMVOutputII format.
Definition: GMVOutput.h:18
GMVOutput(const InputParameters &parameters)
Class constructor.
Definition: GMVOutput.C:39