20 #ifndef OPM_OUTPUT_CELLS_HPP
21 #define OPM_OUTPUT_CELLS_HPP
26 #include <opm/input/eclipse/Units/UnitSystem.hpp>
62 enum class TargetType {
65 RESTART_TRACER_SOLUTION,
75 UnitSystem::measure dim;
76 std::vector<double> data;
79 bool operator==(
const CellData& cell2)
const
81 return dim == cell2.dim &&
83 target == cell2.target;
86 template<
class Serializer>
94 static CellData serializationTestObject()
96 return CellData{UnitSystem::measure::runtime,
98 TargetType::RESTART_TRACER_SOLUTION};
Class for (de-)serializing.
Definition: Serializer.hpp:75
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:29
Small struct that keeps track of data for output to restart/summary files.
Definition: Cells.hpp:74