32 enum class DepthCorrection
41 PAvg(
double inner_weight,
43 DepthCorrection depth_correction,
44 bool use_open_connections);
46 static PAvg serializationTestObject();
48 double inner_weight()
const
50 return this->m_inner_weight;
53 double conn_weight()
const
55 return this->m_conn_weight;
58 bool open_connections()
const
60 return this->m_open_connections;
63 DepthCorrection depth_correction()
const
65 return this->m_depth_correction;
68 bool use_porv()
const;
70 template <
class Serializer>
73 serializer(this->m_inner_weight);
74 serializer(this->m_conn_weight);
75 serializer(this->m_depth_correction);
76 serializer(this->m_open_connections);
79 bool operator==(
const PAvg& other)
const;
80 bool operator!=(
const PAvg& other)
const;
83 double m_inner_weight;
85 DepthCorrection m_depth_correction;
86 bool m_open_connections;
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30