@@ -38,7 +38,7 @@ class CFlowOutput : public CFVMOutput{
3838 * \brief Constructor of the class
3939 * \param[in] config - Definition of the particular problem.
4040 */
41- CFlowOutput (CConfig *config, unsigned short nDim, bool femOutput);
41+ CFlowOutput (const CConfig *config, unsigned short nDim, bool femOutput);
4242
4343 /* !
4444 * \brief Add flow surface output fields
@@ -50,10 +50,10 @@ class CFlowOutput : public CFVMOutput{
5050 * \brief Set flow surface output field values
5151 * \param[in] solver - The container holding all solution data.
5252 * \param[in] geometry - Geometrical definition of the problem.
53- * \param[in] config - Definition of the particular problem.
53+ * \param[in,out ] config - Definition of the particular problem.
5454 * \param[in] output - Boolean indicating whether information should be written to screen
5555 */
56- void SetAnalyzeSurface (CSolver *solver, CGeometry *geometry, CConfig *config, bool output);
56+ void SetAnalyzeSurface (const CSolver *solver, const CGeometry *geometry, CConfig *config, bool output);
5757
5858 /* !
5959 * \brief Add aerodynamic coefficients as output fields
@@ -152,10 +152,9 @@ class CFlowOutput : public CFVMOutput{
152152 /* !
153153 * \brief Write the forces breakdown file
154154 * \param[in] config - Definition of the particular problem per zone.
155- * \param[in] geometry - Geometrical definition of the problem.
156- * \param[in] solver_container - The container holding all solution data.
155+ * \param[in] flow_solver - The container holding all solution data.
157156 */
158- void WriteForcesBreakdown (CConfig *config, CGeometry *geometry, CSolver **solver_container) ;
157+ void WriteForcesBreakdown (const CConfig *config, const CSolver *flow_solver) const ;
159158
160159 /* !
161160 * \brief Set the time averaged output fields.
0 commit comments