https://mooseframework.inl.gov
MappingOutput.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 "FileOutput.h"
13 #include "MappingInterface.h"
14 #include "VariableMappingBase.h"
15 
20 {
21 public:
24 
25 protected:
26  virtual void output() override;
27 
28 private:
30  const std::vector<std::string> & _mappings;
31 };
static InputParameters validParams()
Definition: MappingOutput.C:17
MappingOutput(const InputParameters &parameters)
Definition: MappingOutput.C:26
virtual void output() override
Definition: MappingOutput.C:34
const std::vector< std::string > & _mappings
List of supplied Mapping objects.
Definition: MappingOutput.h:30
An interface class that helps getting access to Mapping objects.
const InputParameters & parameters() const
Class which is used to output valuable data in binary format from Mapping objects.
Definition: MappingOutput.h:19