Skip to content

Commit

Permalink
Merge branch 'CleanupDoxygenHeaders' into 'master'
Browse files Browse the repository at this point in the history
Cleanup of the Doxygen's documentation.

See merge request ogs/ogs!4671
  • Loading branch information
TomFischer committed Jul 13, 2023
2 parents 6b55afa + 20a2395 commit 1630a2b
Show file tree
Hide file tree
Showing 385 changed files with 792 additions and 1,033 deletions.
1 change: 1 addition & 0 deletions Applications/ApplicationsLib/LinearSolverLibrarySetup.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/ApplicationsLib/ProjectData.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \author Karsten Rink
* \date 2010-08-25
* \brief Implementation of the project data class.
Expand Down
1 change: 1 addition & 0 deletions Applications/ApplicationsLib/ProjectData.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \author Karsten Rink
* \date 2010-08-25
*
Expand Down
2 changes: 1 addition & 1 deletion Applications/ApplicationsLib/Simulation.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* \brief Implementation of class Simulation
* \file
* \brief Implementation of class Simulation
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
2 changes: 1 addition & 1 deletion Applications/ApplicationsLib/Simulation.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* \brief Declaration of class Simulation
* \file
* \brief Declaration of class Simulation
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
2 changes: 1 addition & 1 deletion Applications/CLI/CommandLineArgumentParser.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* \brief Implementation of CommandLineArgumentParser.
* \file
* \brief Implementation of CommandLineArgumentParser.
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
2 changes: 1 addition & 1 deletion Applications/CLI/CommandLineArgumentParser.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* \brief Declaration of CommandLineArgumentParser.
* \file
* \brief Declaration of CommandLineArgumentParser.
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/CLI/ogs.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \date 2014-08-04
* \brief Implementation of OpenGeoSys simulation application
*
Expand Down
1 change: 1 addition & 0 deletions Applications/CLI/ogs_embedded_python.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/CLI/ogs_embedded_python.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/DataExplorer/DataView/MeshMapping2DDialog.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/DataExplorer/DataView/MeshMapping2DDialog.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/DataExplorer/VtkVis/NetCdfConfigureDialog.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (https://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/DataExplorer/VtkVis/NetCdfConfigureDialog.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (https://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 0 additions & 1 deletion Applications/DataExplorer/VtkVis/VtkAppendArrayFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
#include <vector>

/**
* \brief
*/
class VtkAppendArrayFilter : public vtkUnstructuredGridAlgorithm, public VtkAlgorithmProperties
{
Expand Down
10 changes: 5 additions & 5 deletions Applications/DataExplorer/VtkVis/VtkCompositeFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class vtkAlgorithm;

/**
* @brief Is used to combine several filter in one VtkVisPipelineItem. You can
* \brief Is used to combine several filter in one VtkVisPipelineItem. You can
* use vtk filter and custom filter. To subclass this you have to implement the
* init() function. There you combine the filters. Make sure to set the members
* _inputDataObjectType, _outputDataObjectType and _outputAlgorithm. Make also
Expand All @@ -33,10 +33,10 @@ class vtkAlgorithm;
* ...(do something here)
* _outputAlgorithm = lastFilter;
*
* Create user properties with `ogsUserPropertyMacro` or `ogsUserVecxPropertyMacro`
* and initialize these properties inside the constructor with
* `this->Set[Property Name](value)`.
* See VtkCompositeThresholdFilter for an example.
* Create user properties with `ogsUserPropertyMacro` or
* `ogsUserVecxPropertyMacro` and initialize these properties inside the
* constructor with `this->Set[Property Name](value)`. See
* VtkCompositeThresholdFilter for an example.
*/
class VtkCompositeFilter : public VtkAlgorithmProperties
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/DataExplorer/VtkVis/VtkConsoleOutputWindow.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \brief VtkWin32ConsoleOutputWindow is used to suppress message boxes on
* Windows.
*
Expand Down
1 change: 1 addition & 0 deletions Applications/DataHolderLib/ColorLookupTable.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/DataHolderLib/ColorLookupTable.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
10 changes: 5 additions & 5 deletions Applications/FileIO/CsvInterface.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/**
* @file CsvInterface.cpp
* @author Karsten Rink
* @date 2015-03-25
* @brief Implementation of the CsvInterface class.
* \file
* \author Karsten Rink
* \date 2015-03-25
* \brief Implementation of the CsvInterface class.
*
* @copyright
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
Expand Down
10 changes: 5 additions & 5 deletions Applications/FileIO/CsvInterface.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/**
* @file CsvInterface.h
* @author Karsten Rink
* @date 2015-03-25
* @brief Definition of the CsvInterface class.
* \file
* \author Karsten Rink
* \date 2015-03-25
* \brief Definition of the CsvInterface class.
*
* @copyright
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/FEFLOW/FEFLOWGeoInterface.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/FEFLOW/FEFLOWGeoInterface.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/FEFLOW/FEFLOWMeshInterface.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/FEFLOW/FEFLOWMeshInterface.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
4 changes: 0 additions & 4 deletions Applications/FileIO/GMSInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
* @file GMSInterface.cpp
* @date 2010-06-08
* @author Karsten Rink
*/

#include "GMSInterface.h"
Expand Down
5 changes: 1 addition & 4 deletions Applications/FileIO/GMSInterface.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/**
* \file
* \author Karsten Rink
* \author Lars Bilke
* \date 2010-06-08
* \brief Definition of the GMSInterface class.
*
Expand All @@ -9,10 +10,6 @@
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
* @file GMSInterface.h
* @date 2010-06-08
* @author Lars Bilke
*/

#pragma once
Expand Down
6 changes: 3 additions & 3 deletions Applications/FileIO/Gmsh/GMSHAdaptiveMeshDensity.cpp
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
* @file GMSHAdaptiveMeshDensity.cpp
* @date 2012-03-05
* @author Thomas Fischer
* \date 2012-03-05
* \author Thomas Fischer
*/

#include "GMSHAdaptiveMeshDensity.h"
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHAdaptiveMeshDensity.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHFixedMeshDensity.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHFixedMeshDensity.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHInterface.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHInterface.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHLine.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHLine.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHLineLoop.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHLineLoop.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHMeshDensityStrategy.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHPoint.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHPoint.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHPolygonTree.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GMSHPolygonTree.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/Gmsh/GmshReader.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand Down
9 changes: 5 additions & 4 deletions Applications/FileIO/Gmsh/GmshReader.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
*
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
Expand All @@ -21,16 +22,16 @@ namespace GMSH

/**
* checks if there is a GMSH mesh file header
* @param fname the file name of the mesh (including the path)
* @return true, if the file seems to be a valid GMSH file, else false
* \param fname the file name of the mesh (including the path)
* \return true, if the file seems to be a valid GMSH file, else false
*/
bool isGMSHMeshFile(const std::string& fname);

/**
* reads a mesh created by GMSH - this implementation is based on the former
* function GMSH2MSH
* @param fname the file name of the mesh (including the path)
* @return
* \param fname the file name of the mesh (including the path)
* \return
*/
MeshLib::Mesh* readGMSHMesh(std::string const& fname);

Expand Down
1 change: 1 addition & 0 deletions Applications/FileIO/GocadIO/GocadEnums.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
Expand Down
Loading

0 comments on commit 1630a2b

Please sign in to comment.