@@ -71,8 +71,6 @@ System::System (EquationSystems & es,
7171 solution (NumericVector < Number > ::build (this -> comm ())),
7272 current_local_solution (NumericVector < Number > ::build (this -> comm ())),
7373 time (0. ),
74- qoi (0 ),
75- qoi_error_estimates (0 ),
7674 _init_system_function (nullptr ),
7775 _init_system_object (nullptr ),
7876 _assemble_system_function (nullptr ),
@@ -2148,50 +2146,50 @@ void System::user_QOI_derivative(const QoISet & qoi_indices,
21482146
21492147void System ::init_qois (unsigned int n_qois )
21502148{
2151- qoi .resize (n_qois );
2152- qoi_error_estimates .resize (n_qois );
2149+ _qoi .resize (n_qois );
2150+ _qoi_error_estimates .resize (n_qois );
21532151}
21542152
21552153
21562154void System ::set_qoi (unsigned int qoi_index , Number qoi_value )
21572155{
2158- libmesh_assert (qoi_index < qoi .size ());
2156+ libmesh_assert (qoi_index < _qoi .size ());
21592157
2160- qoi [qoi_index ] = qoi_value ;
2158+ _qoi [qoi_index ] = qoi_value ;
21612159}
21622160
21632161
21642162Number System ::get_qoi_value (unsigned int qoi_index ) const
21652163{
2166- libmesh_assert (qoi_index < qoi .size ());
2167- return qoi [qoi_index ];
2164+ libmesh_assert (qoi_index < _qoi .size ());
2165+ return _qoi [qoi_index ];
21682166}
21692167
21702168
21712169std ::vector < Number > System ::get_qoi_values () const
21722170{
2173- return this -> qoi ;
2171+ return this -> _qoi ;
21742172}
21752173
21762174
21772175void System ::set_qoi (std ::vector < Number > new_qoi )
21782176{
2179- libmesh_assert_equal_to (this -> qoi .size (), new_qoi .size ());
2180- this -> qoi = std ::move (new_qoi );
2177+ libmesh_assert_equal_to (this -> _qoi .size (), new_qoi .size ());
2178+ this -> _qoi = std ::move (new_qoi );
21812179}
21822180
21832181
21842182void System ::set_qoi_error_estimate (unsigned int qoi_index , Number qoi_error_estimate )
21852183{
2186- libmesh_assert (qoi_index < qoi_error_estimates .size ());
2184+ libmesh_assert (qoi_index < _qoi_error_estimates .size ());
21872185
2188- qoi_error_estimates [qoi_index ] = qoi_error_estimate ;
2186+ _qoi_error_estimates [qoi_index ] = qoi_error_estimate ;
21892187}
21902188
21912189Number System ::get_qoi_error_estimate_value (unsigned int qoi_index ) const
21922190{
2193- libmesh_assert (qoi_index < qoi_error_estimates .size ());
2194- return qoi_error_estimates [qoi_index ];
2191+ libmesh_assert (qoi_index < _qoi_error_estimates .size ());
2192+ return _qoi_error_estimates [qoi_index ];
21952193}
21962194
21972195
0 commit comments