23 #ifndef OPM_WELL_TRACER_RATE_HPP 24 #define OPM_WELL_TRACER_RATE_HPP 27 #include <unordered_map> 31 template<
class Scalar>
43 template<
class Serializer>
44 void serializeOp(Serializer& serializer)
53 this->name == that.name
54 && this->rate == that.rate;
58 template<
class Scalar>
62 std::unordered_map<int,Scalar> rate{};
70 template<
class Serializer>
71 void serializeOp(Serializer& serializer)
80 this->name == that.name
81 && this->rate == that.rate;
87 #endif // OPM_WELL_TRACER_RATE_HPP Definition: WellTracerRate.hpp:32
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition: blackoilbioeffectsmodules.hh:45
Definition: WellTracerRate.hpp:59