From 0665fbb21cced7e4840092967a5bc8117b5fb21a Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Fri, 11 Jan 2013 10:42:24 +0100 Subject: [PATCH] Reformatting header part 2. --- BaseLib/RangeValidator.h | 13 +++++---- BaseLib/RangeValidator.hpp | 13 +++++---- FemLib/BoundaryCondition.cpp | 14 +++++----- FemLib/BoundaryCondition.h | 13 +++++---- FemLib/InitialCondition.cpp | 13 +++++---- FemLib/InitialCondition.h | 14 +++++----- FemLib/SourceTerm.cpp | 14 +++++----- FemLib/SourceTerm.h | 13 +++++---- FileIO/GMSInterface.cpp | 13 +++++---- FileIO/Gmsh2GeoIO.cpp | 13 +++++---- FileIO/Legacy/OGSIOVer4.cpp | 13 +++++---- FileIO/Legacy/OGSIOVer4.h | 13 +++++---- FileIO/MeshIO/GMSHAdaptiveMeshDensity.cpp | 13 +++++---- FileIO/MeshIO/GMSHAdaptiveMeshDensity.h | 13 +++++---- FileIO/MeshIO/GMSHFixedMeshDensity.cpp | 13 +++++---- FileIO/MeshIO/GMSHFixedMeshDensity.h | 13 +++++---- FileIO/MeshIO/GMSHInterface.cpp | 13 +++++---- FileIO/MeshIO/GMSHInterface.h | 13 +++++---- FileIO/MeshIO/GMSHMeshDensityStrategy.h | 13 +++++---- FileIO/MeshIO/GMSHPoint.cpp | 13 +++++---- FileIO/MeshIO/GMSHPoint.h | 13 +++++---- FileIO/MeshIO/TetGenInterface.cpp | 13 +++++---- FileIO/MeshIO/TetGenInterface.h | 13 +++++---- FileIO/RapidXmlIO/BoostVtuInterface.cpp | 27 ++++++++++--------- FileIO/RapidXmlIO/BoostVtuInterface.h | 15 ++++++----- FileIO/RapidXmlIO/RapidStnInterface.cpp | 13 +++++---- FileIO/RapidXmlIO/RapidStnInterface.h | 13 +++++---- FileIO/RapidXmlIO/RapidVtuInterface.cpp | 13 +++++---- FileIO/RapidXmlIO/RapidVtuInterface.h | 13 +++++---- FileIO/RapidXmlIO/zLibDataCompressor.cpp | 16 ++++++----- FileIO/RapidXmlIO/zLibDataCompressor.h | 15 ++++++----- FileIO/readNonBlankLineFromInputStream.cpp | 13 +++++---- GeoLib/PointWithID.h | 13 +++++---- GeoLib/Polygon.cpp | 13 +++++---- GeoLib/Polygon.h | 13 +++++---- GeoLib/Polyline.cpp | 13 +++++---- GeoLib/Polyline.h | 13 +++++---- GeoLib/QuadTree.h | 13 +++++---- GeoLib/SimplePolygonTree.cpp | 13 +++++---- GeoLib/SimplePolygonTree.h | 13 +++++---- MeshLib/ConvertRasterToMesh.cpp | 5 ++-- MeshLib/ConvertRasterToMesh.h | 6 +++-- MeshLib/Elements/Edge.h | 13 +++++---- MeshLib/Elements/Hex.h | 13 +++++---- MeshLib/Elements/Prism.h | 13 +++++---- MeshLib/Elements/Pyramid.h | 13 +++++---- MeshLib/Elements/Quad.h | 13 +++++---- MeshLib/Elements/TemplateEdge.tpp | 13 +++++---- MeshLib/Elements/TemplateTri.tpp | 13 +++++---- MeshLib/Elements/Tet.h | 13 +++++---- MeshLib/Elements/Tri.h | 13 +++++---- MeshLib/Mesh2MeshPropertyInterpolation.cpp | 13 +++++---- MeshLib/Mesh2MeshPropertyInterpolation.h | 13 +++++---- MeshLib/MeshCoarsener.cpp | 13 +++++---- MeshLib/MeshCoarsener.h | 13 +++++---- MeshLib/MeshQuality/MeshQualityChecker.cpp | 13 +++++---- MeshLib/MeshQuality/MeshQualityChecker.h | 13 +++++---- .../MeshQuality/MeshQualityEquiAngleSkew.cpp | 13 +++++---- .../MeshQuality/MeshQualityEquiAngleSkew.h | 13 +++++---- .../MeshQualityShortestLongestRatio.cpp | 13 +++++---- .../MeshQualityShortestLongestRatio.h | 13 +++++---- MeshLib/MeshQuality/MeshQualityVolume.cpp | 13 +++++---- MeshLib/MeshQuality/MeshQualityVolume.h | 13 +++++---- MeshLib/MshEditor.cpp | 13 +++++---- MeshLib/MshEditor.h | 13 +++++---- Tests/GeoLib/TestAABB.cpp | 13 +++++---- 66 files changed, 529 insertions(+), 338 deletions(-) diff --git a/BaseLib/RangeValidator.h b/BaseLib/RangeValidator.h index dc0fd2748a8..8773388f226 100644 --- a/BaseLib/RangeValidator.h +++ b/BaseLib/RangeValidator.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 28, 2012 + * \brief Definition of the RangeValidator calss. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file RangeValidator.h + * http://www.opengeosys.org/project/license * - * Created on Sep 28, 2012 by Thomas Fischer */ #ifndef RANGEVALIDATOR_H_ diff --git a/BaseLib/RangeValidator.hpp b/BaseLib/RangeValidator.hpp index ca0196bcdd7..e0917ca0791 100644 --- a/BaseLib/RangeValidator.hpp +++ b/BaseLib/RangeValidator.hpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 28, 2012 + * \brief Implementation of the RangeValidator class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file RangeValidator.hpp + * http://www.opengeosys.org/project/license * - * Created on Sep 28, 2012 by Thomas Fischer */ namespace BaseLib { diff --git a/FemLib/BoundaryCondition.cpp b/FemLib/BoundaryCondition.cpp index 9fb4bc958b1..f8a5513e712 100644 --- a/FemLib/BoundaryCondition.cpp +++ b/FemLib/BoundaryCondition.cpp @@ -1,12 +1,14 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2011-08-30 + * \brief Implementation of the BoundaryCondition class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file BoundaryCondition.cpp - * - * Created on 2011-08-30 by Karsten Rink + * http://www.opengeosys.org/project/license * */ /* diff --git a/FemLib/BoundaryCondition.h b/FemLib/BoundaryCondition.h index 7478b54d218..c0dd5f76cec 100644 --- a/FemLib/BoundaryCondition.h +++ b/FemLib/BoundaryCondition.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2011-08-30 + * \brief Definition of the BoundaryCondition class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file BoundaryCondition.h + * http://www.opengeosys.org/project/license * - * Created on 2011-08-30 by Karsten Rink */ #ifndef BOUNDARYCONDITION_H diff --git a/FemLib/InitialCondition.cpp b/FemLib/InitialCondition.cpp index a2006b8df2d..8337077dc31 100644 --- a/FemLib/InitialCondition.cpp +++ b/FemLib/InitialCondition.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2011-08-30 + * \brief Implementation of the InitialCondition class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file InitialCondition.cpp + * http://www.opengeosys.org/project/license * - * Created on 2011-08-30 by Karsten Rink */ /* diff --git a/FemLib/InitialCondition.h b/FemLib/InitialCondition.h index 907b1c55d1e..be86936605a 100644 --- a/FemLib/InitialCondition.h +++ b/FemLib/InitialCondition.h @@ -1,12 +1,14 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2011-08-30 + * \brief Definition of the InitialCondition class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file InitialCondition.h - * - * Created on 2011-08-30 by Karsten Rink + * http://www.opengeosys.org/project/license * */ diff --git a/FemLib/SourceTerm.cpp b/FemLib/SourceTerm.cpp index e425451332f..01c2f24cce5 100644 --- a/FemLib/SourceTerm.cpp +++ b/FemLib/SourceTerm.cpp @@ -1,12 +1,14 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2011-08-30 + * \brief Implementation of the SourceTerm class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file SourceTerm.cpp - * - * Created on 2011-08-30 by Karsten Rink + * http://www.opengeosys.org/project/license * */ /* diff --git a/FemLib/SourceTerm.h b/FemLib/SourceTerm.h index 293b15d2662..5e8d215afcf 100644 --- a/FemLib/SourceTerm.h +++ b/FemLib/SourceTerm.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2011-08-30 + * \brief Definition of the SourceTerm class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file SourceTerm.h + * http://www.opengeosys.org/project/license * - * Created on 2011-08-30 by Karsten Rink */ #ifndef SOURCETERM_H diff --git a/FileIO/GMSInterface.cpp b/FileIO/GMSInterface.cpp index 48ceabd2bc8..0eea1f4e253 100644 --- a/FileIO/GMSInterface.cpp +++ b/FileIO/GMSInterface.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2010-06-08 + * \brief Implementation of the GMSInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSInterface.cpp + * http://www.opengeosys.org/project/license * - * Created on 2010-06-08 by Karsten Rink */ #include <fstream> diff --git a/FileIO/Gmsh2GeoIO.cpp b/FileIO/Gmsh2GeoIO.cpp index cf6af009fa8..8ad55a3a434 100644 --- a/FileIO/Gmsh2GeoIO.cpp +++ b/FileIO/Gmsh2GeoIO.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-08-18 + * \brief Implementation of the Gmsh2GeoIO class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Gmsh2GeoIO.cpp + * http://www.opengeosys.org/project/license * - * Created on 2011-08-18 by Thomas Fischer */ #include <fstream> diff --git a/FileIO/Legacy/OGSIOVer4.cpp b/FileIO/Legacy/OGSIOVer4.cpp index d8b8095bc89..a0f16075ce4 100644 --- a/FileIO/Legacy/OGSIOVer4.cpp +++ b/FileIO/Legacy/OGSIOVer4.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-01-14 + * \brief Implementation of the OGSIOVer4 class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file OGSIOVer4.cpp + * http://www.opengeosys.org/project/license * - * Created on 2010-01-14 by Thomas Fischer */ #include <iomanip> diff --git a/FileIO/Legacy/OGSIOVer4.h b/FileIO/Legacy/OGSIOVer4.h index f589af3f0c9..fda5eae6c7a 100644 --- a/FileIO/Legacy/OGSIOVer4.h +++ b/FileIO/Legacy/OGSIOVer4.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-01-14 + * \brief Definition of the OGSIOVer4 class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file OGSIOVer4.h + * http://www.opengeosys.org/project/license * - * Created on 2010-01-14 by Thomas Fischer */ #ifndef OGSIOVER4_H_ diff --git a/FileIO/MeshIO/GMSHAdaptiveMeshDensity.cpp b/FileIO/MeshIO/GMSHAdaptiveMeshDensity.cpp index 72a2e50c67a..d19a7375455 100644 --- a/FileIO/MeshIO/GMSHAdaptiveMeshDensity.cpp +++ b/FileIO/MeshIO/GMSHAdaptiveMeshDensity.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2012-03-05 + * \brief Implementation of the GMSHAdaptiveMeshDensity class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSHAdaptiveMeshDensity.cpp + * http://www.opengeosys.org/project/license * - * Created on 2012-03-05 by Thomas Fischer */ #include <list> diff --git a/FileIO/MeshIO/GMSHAdaptiveMeshDensity.h b/FileIO/MeshIO/GMSHAdaptiveMeshDensity.h index 8c62eec2015..05092b7f6b4 100644 --- a/FileIO/MeshIO/GMSHAdaptiveMeshDensity.h +++ b/FileIO/MeshIO/GMSHAdaptiveMeshDensity.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2012-03-05 + * \brief Definition of the GMSHAdaptiveMeshDensity class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSHAdaptiveMeshDensity.h + * http://www.opengeosys.org/project/license * - * Created on 2012-03-05 by Thomas Fischer */ #ifndef GMSHADAPTIVEMESHDENSITY_H_ diff --git a/FileIO/MeshIO/GMSHFixedMeshDensity.cpp b/FileIO/MeshIO/GMSHFixedMeshDensity.cpp index 79db6dea16a..441a3fa1a09 100644 --- a/FileIO/MeshIO/GMSHFixedMeshDensity.cpp +++ b/FileIO/MeshIO/GMSHFixedMeshDensity.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2012-03-05 + * \brief Implementation of the GMSHFixedMeshDensity class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSHFixedMeshDensity.cpp + * http://www.opengeosys.org/project/license * - * Created on 2012-03-05 by Thomas Fischer */ #include "MeshIO/GMSHFixedMeshDensity.h" diff --git a/FileIO/MeshIO/GMSHFixedMeshDensity.h b/FileIO/MeshIO/GMSHFixedMeshDensity.h index 31215ebde1d..609d2a7efd8 100644 --- a/FileIO/MeshIO/GMSHFixedMeshDensity.h +++ b/FileIO/MeshIO/GMSHFixedMeshDensity.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2012-03-05 + * \brief Definition of the GMSHFixedMeshDensity class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSHFixedMeshDensity.h + * http://www.opengeosys.org/project/license * - * Created on 2012-03-05 by Thomas Fischer */ #ifndef GMSHFIXEDMESHDENSITY_H_ diff --git a/FileIO/MeshIO/GMSHInterface.cpp b/FileIO/MeshIO/GMSHInterface.cpp index 66053345474..8938ba3d49c 100644 --- a/FileIO/MeshIO/GMSHInterface.cpp +++ b/FileIO/MeshIO/GMSHInterface.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-04-29 + * \brief Implementation of the GMSHInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSHInterface.cpp + * http://www.opengeosys.org/project/license * - * Created on 2010-04-29 by Thomas Fischer */ #include <fstream> diff --git a/FileIO/MeshIO/GMSHInterface.h b/FileIO/MeshIO/GMSHInterface.h index 72c18759073..09aa5178f0d 100644 --- a/FileIO/MeshIO/GMSHInterface.h +++ b/FileIO/MeshIO/GMSHInterface.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-04-29 + * \brief Definition of the GMSHInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSHInterface.h + * http://www.opengeosys.org/project/license * - * Created on 2010-04-29 by Thomas Fischer */ #ifndef GMSHINTERFACE_H_ diff --git a/FileIO/MeshIO/GMSHMeshDensityStrategy.h b/FileIO/MeshIO/GMSHMeshDensityStrategy.h index 441f96e5650..8ea1dc74b34 100644 --- a/FileIO/MeshIO/GMSHMeshDensityStrategy.h +++ b/FileIO/MeshIO/GMSHMeshDensityStrategy.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-03-05 + * \brief Definition of the GMSHMeshDensityStrategy class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSHMeshDensityStrategy.h + * http://www.opengeosys.org/project/license * - * Created on 2010-03-05 by Thomas Fischer */ #ifndef GMSHMESHDENSITYSTRATEGY_H_ diff --git a/FileIO/MeshIO/GMSHPoint.cpp b/FileIO/MeshIO/GMSHPoint.cpp index c3f8b1d55a5..578c4907277 100644 --- a/FileIO/MeshIO/GMSHPoint.cpp +++ b/FileIO/MeshIO/GMSHPoint.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2012-03-21 + * \brief Implementation of the GMSHPoint class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSHPoint.cpp + * http://www.opengeosys.org/project/license * - * Created on 2012-03-21 by Thomas Fischer */ #include <cmath> diff --git a/FileIO/MeshIO/GMSHPoint.h b/FileIO/MeshIO/GMSHPoint.h index 1b41a999390..20bbdf5120a 100644 --- a/FileIO/MeshIO/GMSHPoint.h +++ b/FileIO/MeshIO/GMSHPoint.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2012-03-21 + * \brief Definition of the GMSHPoint class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file GMSHPoint.h + * http://www.opengeosys.org/project/license * - * Created on 2012-03-21 by Thomas Fischer */ #ifndef GMSHPOINT_H_ diff --git a/FileIO/MeshIO/TetGenInterface.cpp b/FileIO/MeshIO/TetGenInterface.cpp index 6f5c1f111b2..98e1718ae70 100644 --- a/FileIO/MeshIO/TetGenInterface.cpp +++ b/FileIO/MeshIO/TetGenInterface.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-09-12 + * \brief Implementation of the TetGenInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file TetGenInterface.cpp + * http://www.opengeosys.org/project/license * - * Created on 2011-09-12 by Thomas Fischer */ #include <cstddef> diff --git a/FileIO/MeshIO/TetGenInterface.h b/FileIO/MeshIO/TetGenInterface.h index 71901f84625..4535d956c2b 100644 --- a/FileIO/MeshIO/TetGenInterface.h +++ b/FileIO/MeshIO/TetGenInterface.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-09-12 + * \brief Definition of the TetGenInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file TetGenInterface.h + * http://www.opengeosys.org/project/license * - * Created on 2011-09-12 by Thomas Fischer */ #ifndef TETGENINTERFACE_H_ diff --git a/FileIO/RapidXmlIO/BoostVtuInterface.cpp b/FileIO/RapidXmlIO/BoostVtuInterface.cpp index 18214049093..fb2ede317ac 100644 --- a/FileIO/RapidXmlIO/BoostVtuInterface.cpp +++ b/FileIO/RapidXmlIO/BoostVtuInterface.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2012-12-05 + * \brief Implementation of the BoostVtuInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file BoostVtuInterface.cpp + * http://www.opengeosys.org/project/license * - * Created on 2012-12-05 by Karsten Rink */ #include "BoostVtuInterface.h" @@ -58,7 +61,7 @@ MeshLib::Mesh* BoostVtuInterface::readVTUFile(const std::string &file_name) using boost::property_tree::ptree; ptree doc; read_xml(in, doc); - + if (isVTKUnstructuredGrid(doc)) { ptree const& root_node = doc.get_child("VTKFile"); @@ -81,13 +84,13 @@ MeshLib::Mesh* BoostVtuInterface::readVTUFile(const std::string &file_name) OptionalPtree const& piece_node = root_node.get_child_optional("UnstructuredGrid.Piece"); if (piece_node) { - + const unsigned nNodes = static_cast<unsigned>(piece_node->get("<xmlattr>.NumberOfPoints", 0)); const unsigned nElems = static_cast<unsigned>(piece_node->get("<xmlattr>.NumberOfCells", 0)); if ((nNodes == 0) || (nElems == 0)) { - std::cout << "BoostVtuInterface::readVTUFile() - Number of nodes is " << nNodes + std::cout << "BoostVtuInterface::readVTUFile() - Number of nodes is " << nNodes << ", number of elements is " << nElems << "." << std::endl; return nullptr; } @@ -97,7 +100,7 @@ MeshLib::Mesh* BoostVtuInterface::readVTUFile(const std::string &file_name) std::vector<unsigned> mat_ids(nElems, 0); std::vector<unsigned> cell_types(nElems); - BOOST_FOREACH( ptree::value_type const& grid_piece, *piece_node ) + BOOST_FOREACH( ptree::value_type const& grid_piece, *piece_node ) { if (grid_piece.first == "CellData") { @@ -106,7 +109,7 @@ MeshLib::Mesh* BoostVtuInterface::readVTUFile(const std::string &file_name) { optional<std::string> const& format = getXmlAttribute("format", *cell_data_node); std::stringstream iss (cell_data_node->data());//v.second.get<std::string>("DataArray")); - if (format) + if (format) { if (*format == "ascii") for(unsigned i=0; i<nElems; i++) @@ -120,7 +123,7 @@ MeshLib::Mesh* BoostVtuInterface::readVTUFile(const std::string &file_name) else std::cerr << "MaterialIDs not found, setting every cell to 0." << std::endl; } - + if (grid_piece.first == "Points") { // This node may or may not have an attribute "Name" with the value "Points". @@ -386,7 +389,7 @@ int BoostVtuInterface::write(std::ostream& stream) const std::string data_array_close("\t\t\t\t"); const std::string data_array_indent("\t\t\t\t "); - using boost::property_tree::ptree; + using boost::property_tree::ptree; ptree doc; ptree &root_node = doc.put("VTKFile", ""); diff --git a/FileIO/RapidXmlIO/BoostVtuInterface.h b/FileIO/RapidXmlIO/BoostVtuInterface.h index 9dde880bb9e..5550999aa73 100644 --- a/FileIO/RapidXmlIO/BoostVtuInterface.h +++ b/FileIO/RapidXmlIO/BoostVtuInterface.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2012-12-05 + * \brief Implementation of the BoostVtuInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file BoostVtuInterface.h + * http://www.opengeosys.org/project/license * - * Created on 2012-12-05 by Karsten Rink */ #ifndef BOOSTVTUINTERFACE_H_ @@ -35,7 +38,7 @@ namespace MeshLib { namespace FileIO { - + /** * \brief Reads and writes VtkXMLUnstructuredGrid-files (vtu) to and from OGS data structures. * diff --git a/FileIO/RapidXmlIO/RapidStnInterface.cpp b/FileIO/RapidXmlIO/RapidStnInterface.cpp index b6ed0667649..01c6045200b 100644 --- a/FileIO/RapidXmlIO/RapidStnInterface.cpp +++ b/FileIO/RapidXmlIO/RapidStnInterface.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2012-08-16 + * \brief Implementation of the RapidStnInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file RapidStnInterface.cpp + * http://www.opengeosys.org/project/license * - * Created on 2012-08-16 by Karsten Rink */ #include <iostream> diff --git a/FileIO/RapidXmlIO/RapidStnInterface.h b/FileIO/RapidXmlIO/RapidStnInterface.h index f44c035eb98..527ca48b1d6 100644 --- a/FileIO/RapidXmlIO/RapidStnInterface.h +++ b/FileIO/RapidXmlIO/RapidStnInterface.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2012-08-16 + * \brief Definition of RapidStnInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file RapidStnInterface.h + * http://www.opengeosys.org/project/license * - * Created on 2012-08-16 by Karsten Rink */ #ifndef RAPIDXMLINTERFACE_H diff --git a/FileIO/RapidXmlIO/RapidVtuInterface.cpp b/FileIO/RapidXmlIO/RapidVtuInterface.cpp index b971864eecb..d4a0b1459bf 100644 --- a/FileIO/RapidXmlIO/RapidVtuInterface.cpp +++ b/FileIO/RapidXmlIO/RapidVtuInterface.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2012-08-30 + * \brief Implementation of the RapidVtuInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file RapidVtuInterface.cpp + * http://www.opengeosys.org/project/license * - * Created on 2012-08-30 by Karsten Rink */ #include "RapidVtuInterface.h" diff --git a/FileIO/RapidXmlIO/RapidVtuInterface.h b/FileIO/RapidXmlIO/RapidVtuInterface.h index db0a70e0542..664fd891d37 100644 --- a/FileIO/RapidXmlIO/RapidVtuInterface.h +++ b/FileIO/RapidXmlIO/RapidVtuInterface.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2012-08-30 + * \brief Definition of the RapidVtuInterface class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file RapidVtuInterface.h + * http://www.opengeosys.org/project/license * - * Created on 2012-08-30 by Karsten Rink */ #ifndef RAPIDVTUINTERFACE_H_ diff --git a/FileIO/RapidXmlIO/zLibDataCompressor.cpp b/FileIO/RapidXmlIO/zLibDataCompressor.cpp index 2a40564f5b1..ba82653537e 100644 --- a/FileIO/RapidXmlIO/zLibDataCompressor.cpp +++ b/FileIO/RapidXmlIO/zLibDataCompressor.cpp @@ -1,13 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2012-11-26 + * \brief Implementation of the zLibDataCompressor class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file zLibDataCompressor.cpp + * http://www.opengeosys.org/project/license * - * Created on 2012-11-26 by Karsten Rink - * Based on the vtkZLibDataCompressor-class in VTK 5.6 */ #include "zLibDataCompressor.h" @@ -55,7 +57,7 @@ unsigned long zLibDataCompressor::UncompressBuffer(const unsigned char* compress // Make sure the output size matched that expected. if(decSize != uncompressedSize) { - std::cout << "Decompression produced incorrect size. Expected " + std::cout << "Decompression produced incorrect size. Expected " << uncompressedSize << " and got " << decSize << std::endl; return 0; } diff --git a/FileIO/RapidXmlIO/zLibDataCompressor.h b/FileIO/RapidXmlIO/zLibDataCompressor.h index 181d2f69bfc..d52f03dab46 100644 --- a/FileIO/RapidXmlIO/zLibDataCompressor.h +++ b/FileIO/RapidXmlIO/zLibDataCompressor.h @@ -1,13 +1,16 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2012-11-26 + * \brief Definition of the zLibDataCompressor class. + * Based on the vtkZLibDataCompressor-class in VTK 5.6 + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file zLibDataCompressor.h + * http://www.opengeosys.org/project/license * - * Created on 2012-11-26 by Karsten Rink - * Based on the vtkZLibDataCompressor-class in VTK 5.6 */ #ifndef ZLIBDATACOMPRESSOR_H diff --git a/FileIO/readNonBlankLineFromInputStream.cpp b/FileIO/readNonBlankLineFromInputStream.cpp index cfe3b44d243..1cb9a4240ca 100644 --- a/FileIO/readNonBlankLineFromInputStream.cpp +++ b/FileIO/readNonBlankLineFromInputStream.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-04-19 + * \brief Implementation of the readNonBlankLineFromInputStream function. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file readNonBlankLineFromInputStream.cpp + * http://www.opengeosys.org/project/license * - * Created on 2011-04-19 by Thomas Fischer */ #include "readNonBlankLineFromInputStream.h" diff --git a/GeoLib/PointWithID.h b/GeoLib/PointWithID.h index 135a12577ee..e5bfb683a0a 100644 --- a/GeoLib/PointWithID.h +++ b/GeoLib/PointWithID.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-01-05 + * \brief Definition of the PointWithID class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file PointWithID.h + * http://www.opengeosys.org/project/license * - * Created on 2011-01-05 by Thomas Fischer */ #ifndef POINTWITHID_H_ diff --git a/GeoLib/Polygon.cpp b/GeoLib/Polygon.cpp index 555abcd7fb6..fb1733cfd69 100644 --- a/GeoLib/Polygon.cpp +++ b/GeoLib/Polygon.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-06-21 + * \brief Implementation of the Polygon class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Polygon.cpp + * http://www.opengeosys.org/project/license * - * Created on 2010-06-21 by Thomas Fischer */ #include <cmath> diff --git a/GeoLib/Polygon.h b/GeoLib/Polygon.h index 87ba4e24e50..8247e88bd70 100644 --- a/GeoLib/Polygon.h +++ b/GeoLib/Polygon.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-06-21 + * \brief Definition of the Polygon class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Polygon.h + * http://www.opengeosys.org/project/license * - * Created on 2010-06-21 by Thomas Fischer */ #ifndef POLYGON_H_ diff --git a/GeoLib/Polyline.cpp b/GeoLib/Polyline.cpp index 7068d8b80e6..fce2bae427b 100644 --- a/GeoLib/Polyline.cpp +++ b/GeoLib/Polyline.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-06-21 + * \brief Implementation of the Polyline class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Polyline.cpp + * http://www.opengeosys.org/project/license * - * Created on 2010-06-21 by Thomas Fischer */ // ThirdParty/logog diff --git a/GeoLib/Polyline.h b/GeoLib/Polyline.h index 081c3666c08..8a68c07d990 100644 --- a/GeoLib/Polyline.h +++ b/GeoLib/Polyline.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-01-14 + * \brief Definition of the PolyLine class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file PolyLine.h + * http://www.opengeosys.org/project/license * - * Created on 2010-01-14 by Thomas Fischer */ #ifndef POLYLINE_H_ diff --git a/GeoLib/QuadTree.h b/GeoLib/QuadTree.h index b8af9156a8e..ad40de56d38 100644 --- a/GeoLib/QuadTree.h +++ b/GeoLib/QuadTree.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-11-09 + * \brief Definition of the QuadTree class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file QuadTree.h + * http://www.opengeosys.org/project/license * - * Created on 2010-11-09 by Thomas Fischer */ #ifndef QUADTREE_H_ diff --git a/GeoLib/SimplePolygonTree.cpp b/GeoLib/SimplePolygonTree.cpp index b9a96aaf65e..d0e5835226b 100644 --- a/GeoLib/SimplePolygonTree.cpp +++ b/GeoLib/SimplePolygonTree.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-06-22 + * \brief Implementation of the SimplePolygonTree class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file SimplePolygonTree.cpp + * http://www.opengeosys.org/project/license * - * Created on 2010-06-22 by Thomas Fischer */ #include "SimplePolygonTree.h" diff --git a/GeoLib/SimplePolygonTree.h b/GeoLib/SimplePolygonTree.h index 0a6d8e5eabc..2ff051b17e1 100644 --- a/GeoLib/SimplePolygonTree.h +++ b/GeoLib/SimplePolygonTree.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-06-22 + * \brief Definition of the SimplePolygonTree class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file SimplePolygonTree.h + * http://www.opengeosys.org/project/license * - * Created on 2010-06-22 by Thomas Fischer */ #ifndef SIMPLEPOLYGONTREE_H_ diff --git a/MeshLib/ConvertRasterToMesh.cpp b/MeshLib/ConvertRasterToMesh.cpp index e6fc470c8ee..18f1e4f79f6 100644 --- a/MeshLib/ConvertRasterToMesh.cpp +++ b/MeshLib/ConvertRasterToMesh.cpp @@ -2,12 +2,13 @@ * @file ConvertRasterToMesh.cpp * @author Thomas Fischer * @date Nov 14, 2012 + * @brief Implementation of the ConvertRasterToMesh class. * * @copyright - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt + * http://www.opengeosys.org/project/license */ #include "ConvertRasterToMesh.h" diff --git a/MeshLib/ConvertRasterToMesh.h b/MeshLib/ConvertRasterToMesh.h index c0196411191..0421b379fe7 100644 --- a/MeshLib/ConvertRasterToMesh.h +++ b/MeshLib/ConvertRasterToMesh.h @@ -2,12 +2,14 @@ * @file ConvertRasterToMesh.h * @author Thomas Fischer * @date Nov 14, 2012 + * @brief Definition of the ConvertRasterToMesh class. * * @copyright - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt + * http://www.opengeosys.org/project/license + * */ #ifndef CONVERTRASTERTOMESH_H_ diff --git a/MeshLib/Elements/Edge.h b/MeshLib/Elements/Edge.h index 3e148e9a323..6fac5eda898 100644 --- a/MeshLib/Elements/Edge.h +++ b/MeshLib/Elements/Edge.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 27, 2012 + * \brief Definition of the Edge class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Edge.h + * http://www.opengeosys.org/project/license * - * Created on Sep 27, 2012 by Thomas Fischer */ #ifndef EDGE_H_ diff --git a/MeshLib/Elements/Hex.h b/MeshLib/Elements/Hex.h index b17f087e5e0..d03ee414643 100644 --- a/MeshLib/Elements/Hex.h +++ b/MeshLib/Elements/Hex.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 27, 2012 + * \brief Definition of the Hex class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Hex.h + * http://www.opengeosys.org/project/license * - * Created on Sep 27, 2012 by Thomas Fischer */ #ifndef HEX_H_ diff --git a/MeshLib/Elements/Prism.h b/MeshLib/Elements/Prism.h index 1f77d02a615..e2cf7185a26 100644 --- a/MeshLib/Elements/Prism.h +++ b/MeshLib/Elements/Prism.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 27, 2012 + * \brief Definition of the Prism class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Prism.h + * http://www.opengeosys.org/project/license * - * Created on Sep 27, 2012 by Thomas Fischer */ #ifndef PRISM_H_ diff --git a/MeshLib/Elements/Pyramid.h b/MeshLib/Elements/Pyramid.h index 2344320814b..c8525a50f0d 100644 --- a/MeshLib/Elements/Pyramid.h +++ b/MeshLib/Elements/Pyramid.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 27, 2012 + * \brief Definition of the Pyramid class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Pyramid.h + * http://www.opengeosys.org/project/license * - * Created on Sep 27, 2012 by Thomas Fischer */ #ifndef PYRAMID_H_ diff --git a/MeshLib/Elements/Quad.h b/MeshLib/Elements/Quad.h index 8209ef1b392..bc26065d968 100644 --- a/MeshLib/Elements/Quad.h +++ b/MeshLib/Elements/Quad.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 27, 2012 + * \brief Definition of the Quad class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Quad.h + * http://www.opengeosys.org/project/license * - * Created on Sep 27, 2012 by Thomas Fischer */ #ifndef QUAD_H_ diff --git a/MeshLib/Elements/TemplateEdge.tpp b/MeshLib/Elements/TemplateEdge.tpp index fc9dcdb7680..1fe174047bc 100644 --- a/MeshLib/Elements/TemplateEdge.tpp +++ b/MeshLib/Elements/TemplateEdge.tpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 27, 2012 + * \brief Implementation of the TemplateEdge class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file TemplateEdge.tpp + * http://www.opengeosys.org/project/license * - * Created on Sep 27, 2012 by Thomas Fischer */ namespace MeshLib { diff --git a/MeshLib/Elements/TemplateTri.tpp b/MeshLib/Elements/TemplateTri.tpp index 39539c26474..f051e7edf42 100644 --- a/MeshLib/Elements/TemplateTri.tpp +++ b/MeshLib/Elements/TemplateTri.tpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 27, 2012 + * \brief Implementation of the TemplateTri class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file TemplateTri.tpp + * http://www.opengeosys.org/project/license * - * Created on Sep 27, 2012 by Thomas Fischer */ // MathLib diff --git a/MeshLib/Elements/Tet.h b/MeshLib/Elements/Tet.h index 96d11018ae9..a5fa7c5d2dc 100644 --- a/MeshLib/Elements/Tet.h +++ b/MeshLib/Elements/Tet.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 27, 2012 + * \brief Definition of the Tet class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Tet.h + * http://www.opengeosys.org/project/license * - * Created on Sep 27, 2012 by Thomas Fischer */ #ifndef TET_H_ diff --git a/MeshLib/Elements/Tri.h b/MeshLib/Elements/Tri.h index 369658513aa..ca012aecaf4 100644 --- a/MeshLib/Elements/Tri.h +++ b/MeshLib/Elements/Tri.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Sep 27, 2012 + * \brief Definition of the Tri class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Tri.h + * http://www.opengeosys.org/project/license * - * Created on Sep 27, 2012 by Thomas Fischer */ #ifndef TRI_H_ diff --git a/MeshLib/Mesh2MeshPropertyInterpolation.cpp b/MeshLib/Mesh2MeshPropertyInterpolation.cpp index d6fd443eafc..9575f91cb5b 100644 --- a/MeshLib/Mesh2MeshPropertyInterpolation.cpp +++ b/MeshLib/Mesh2MeshPropertyInterpolation.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Oct 12, 2012 + * \brief Implementation of the Mesh2MeshPropertyInterpolation class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Mesh2MeshPropertyInterpolation.cpp + * http://www.opengeosys.org/project/license * - * Created on Oct 12, 2012 by Thomas Fischer */ #include <vector> diff --git a/MeshLib/Mesh2MeshPropertyInterpolation.h b/MeshLib/Mesh2MeshPropertyInterpolation.h index 6fb017536c6..f2965dfa1c6 100644 --- a/MeshLib/Mesh2MeshPropertyInterpolation.h +++ b/MeshLib/Mesh2MeshPropertyInterpolation.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Oct 12, 2012 + * \brief Implementation of the Mesh2MeshPropertyInterpolation class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file Mesh2MeshPropertyInterpolation.h + * http://www.opengeosys.org/project/license * - * Created on Oct 12, 2012 by Thomas Fischer */ #ifndef MESH2MESHPROPERTYINTERPOLATION_H_ diff --git a/MeshLib/MeshCoarsener.cpp b/MeshLib/MeshCoarsener.cpp index f85bb4bec37..270b797d6a1 100644 --- a/MeshLib/MeshCoarsener.cpp +++ b/MeshLib/MeshCoarsener.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Aug 3, 2012 + * \brief Implementation of the MeshCoarsener class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshCoarsener.cpp + * http://www.opengeosys.org/project/license * - * Created on Aug 3, 2012 by Thomas Fischer */ // ThirdParty/logog diff --git a/MeshLib/MeshCoarsener.h b/MeshLib/MeshCoarsener.h index 8c8831687b6..d9149561e5c 100644 --- a/MeshLib/MeshCoarsener.h +++ b/MeshLib/MeshCoarsener.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Aug 3, 2012 + * \brief Definition of the MeshCoarsener class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshCoarsener.h + * http://www.opengeosys.org/project/license * - * Created on Aug 3, 2012 by Thomas Fischer */ #ifndef MESHCOARSENER_H_ diff --git a/MeshLib/MeshQuality/MeshQualityChecker.cpp b/MeshLib/MeshQuality/MeshQualityChecker.cpp index b48b3052476..189a965d381 100644 --- a/MeshLib/MeshQuality/MeshQualityChecker.cpp +++ b/MeshLib/MeshQuality/MeshQualityChecker.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-12-08 + * \brief Implementation of the MeshQualityChecker class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshQualityChecker.cpp + * http://www.opengeosys.org/project/license * - * Created on 2010-12-08 by Thomas Fischer */ #include "MeshQualityChecker.h" diff --git a/MeshLib/MeshQuality/MeshQualityChecker.h b/MeshLib/MeshQuality/MeshQualityChecker.h index b1a8d0db39a..505c1a89394 100644 --- a/MeshLib/MeshQuality/MeshQualityChecker.h +++ b/MeshLib/MeshQuality/MeshQualityChecker.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2010-12-08 + * \brief Definition of the MeshQualityChecker class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshQualityChecker.h + * http://www.opengeosys.org/project/license * - * Created on 2010-12-08 by Thomas Fischer */ #ifndef MESHQUALITYCHECKER_H_ diff --git a/MeshLib/MeshQuality/MeshQualityEquiAngleSkew.cpp b/MeshLib/MeshQuality/MeshQualityEquiAngleSkew.cpp index 59bfe487894..93baed677ce 100644 --- a/MeshLib/MeshQuality/MeshQualityEquiAngleSkew.cpp +++ b/MeshLib/MeshQuality/MeshQualityEquiAngleSkew.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-03-17 + * \brief Implementation of the MeshQualityEquiAngleSkew class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshQualityEquiAngleSkew.cpp + * http://www.opengeosys.org/project/license * - * Created on 2011-03-17 by Thomas Fischer */ #include "MeshQualityEquiAngleSkew.h" diff --git a/MeshLib/MeshQuality/MeshQualityEquiAngleSkew.h b/MeshLib/MeshQuality/MeshQualityEquiAngleSkew.h index b135984119f..22344286e3d 100644 --- a/MeshLib/MeshQuality/MeshQualityEquiAngleSkew.h +++ b/MeshLib/MeshQuality/MeshQualityEquiAngleSkew.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-03-17 + * \brief Definition of the MeshQualityEquiAngleSkew class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshQualityEquiAngleSkew.h + * http://www.opengeosys.org/project/license * - * Created on 2011-03-17 by Thomas Fischer */ #ifndef MESHQUALITYEQUIANGLESKEW_H_ diff --git a/MeshLib/MeshQuality/MeshQualityShortestLongestRatio.cpp b/MeshLib/MeshQuality/MeshQualityShortestLongestRatio.cpp index ba08cfde5b2..85dd71eb062 100644 --- a/MeshLib/MeshQuality/MeshQualityShortestLongestRatio.cpp +++ b/MeshLib/MeshQuality/MeshQualityShortestLongestRatio.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-03-03 + * \brief Implementation of the MeshQualityShortestLongestRatio class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshQualityShortestLongestRatio.cpp + * http://www.opengeosys.org/project/license * - * Created on 2011-03-03 by Thomas Fischer */ #include "MeshQualityShortestLongestRatio.h" diff --git a/MeshLib/MeshQuality/MeshQualityShortestLongestRatio.h b/MeshLib/MeshQuality/MeshQualityShortestLongestRatio.h index 532f6c4c35d..6925e204c76 100644 --- a/MeshLib/MeshQuality/MeshQualityShortestLongestRatio.h +++ b/MeshLib/MeshQuality/MeshQualityShortestLongestRatio.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-03-03 + * \brief Definition of the MeshQualityShortestLongestRatio class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshQualityShortestLongestRatio.h + * http://www.opengeosys.org/project/license * - * Created on 2011-03-03 by Thomas Fischer */ #ifndef MESHQUALITYSHORTESTLONGESTRATIO_H_ diff --git a/MeshLib/MeshQuality/MeshQualityVolume.cpp b/MeshLib/MeshQuality/MeshQualityVolume.cpp index af4638a2958..35d701094bc 100644 --- a/MeshLib/MeshQuality/MeshQualityVolume.cpp +++ b/MeshLib/MeshQuality/MeshQualityVolume.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-03-03 + * \brief Implementation of the MeshQualityVolume class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshQualityVolume.cpp + * http://www.opengeosys.org/project/license * - * Created on 2011-03-03 by Thomas Fischer */ #include "MeshQualityVolume.h" diff --git a/MeshLib/MeshQuality/MeshQualityVolume.h b/MeshLib/MeshQuality/MeshQualityVolume.h index 5b3288ec957..ef7d696cacc 100644 --- a/MeshLib/MeshQuality/MeshQualityVolume.h +++ b/MeshLib/MeshQuality/MeshQualityVolume.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date 2011-03-03 + * \brief Definition of the MeshQualityVolume class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MeshQualityVolume.h + * http://www.opengeosys.org/project/license * - * Created on 2011-03-03 by Thomas Fischer */ #ifndef MESHQUALITYVOLUME_H_ diff --git a/MeshLib/MshEditor.cpp b/MeshLib/MshEditor.cpp index 40ac220de5c..8c26f4555c0 100644 --- a/MeshLib/MshEditor.cpp +++ b/MeshLib/MshEditor.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2011-06-15 + * \brief Implementation of the MshEditor class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MshEditor.cpp + * http://www.opengeosys.org/project/license * - * Created on 2011-06-15 by Karsten Rink */ #include "MshEditor.h" diff --git a/MeshLib/MshEditor.h b/MeshLib/MshEditor.h index 095d326cc67..28b4570f61c 100644 --- a/MeshLib/MshEditor.h +++ b/MeshLib/MshEditor.h @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Karsten Rink + * \date 2011-06-15 + * \brief Definition of the MshEditor class + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file MshEditor.h + * http://www.opengeosys.org/project/license * - * Created on 2011-06-15 by Karsten Rink */ #ifndef MSHEDITOR_H diff --git a/Tests/GeoLib/TestAABB.cpp b/Tests/GeoLib/TestAABB.cpp index 85794d725c2..894e3582a65 100644 --- a/Tests/GeoLib/TestAABB.cpp +++ b/Tests/GeoLib/TestAABB.cpp @@ -1,12 +1,15 @@ /** - * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * \file + * \author Thomas Fischer + * \date Oct 24, 2012 + * \brief Tests of AABB class. + * + * \copyright + * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/LICENSE.txt - * - * \file TestAABB.cpp + * http://www.opengeosys.org/project/license * - * Created on Oct 24, 2012 by Thomas Fischer */ // ** INCLUDES ** -- GitLab