From 62aedb85851838759b1fd99fe97abc634fea11a3 Mon Sep 17 00:00:00 2001 From: Tobias Meisel <tobias.meisel@ufz.de> Date: Mon, 4 Jan 2021 11:31:29 +0100 Subject: [PATCH] [MeL/IO] Change license to 2021 --- MeshLib/IO/XDMF/HdfData.cpp | 9 +++++++++ MeshLib/IO/XDMF/HdfData.h | 8 +++++--- MeshLib/IO/XDMF/HdfWriter.cpp | 2 +- MeshLib/IO/XDMF/HdfWriter.h | 8 +++++--- MeshLib/IO/XDMF/MeshPropertyDataType.h | 12 ++++++++++++ MeshLib/IO/XDMF/XdmfData.cpp | 9 +++++++++ MeshLib/IO/XDMF/XdmfHdfData.h | 2 +- MeshLib/IO/XDMF/XdmfHdfWriter.cpp | 8 ++++++++ MeshLib/IO/XDMF/XdmfHdfWriter.h | 3 +-- MeshLib/IO/XDMF/fileIO.h | 13 ++++++++----- MeshLib/IO/XDMF/mpi/fileIO.cpp | 9 ++++++--- MeshLib/IO/XDMF/mpi/partition.cpp | 9 ++++++--- MeshLib/IO/XDMF/partition.h | 10 ++++++---- MeshLib/IO/XDMF/posix/fileIO.cpp | 9 ++++++--- MeshLib/IO/XDMF/posix/partition.cpp | 10 ++++++++++ 15 files changed, 93 insertions(+), 28 deletions(-) diff --git a/MeshLib/IO/XDMF/HdfData.cpp b/MeshLib/IO/XDMF/HdfData.cpp index 54e3c15b48d..86f6809f8ae 100644 --- a/MeshLib/IO/XDMF/HdfData.cpp +++ b/MeshLib/IO/XDMF/HdfData.cpp @@ -1,3 +1,12 @@ +/** + * \file + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + */ + #include "HdfData.h" #include <hdf5.h> diff --git a/MeshLib/IO/XDMF/HdfData.h b/MeshLib/IO/XDMF/HdfData.h index e31bb62c90b..5fa902b9e09 100644 --- a/MeshLib/IO/XDMF/HdfData.h +++ b/MeshLib/IO/XDMF/HdfData.h @@ -3,9 +3,11 @@ * \author Tobias Meisel * \date 2020-12-08 * \brief Collects and holds all metadata for writing HDF5 file - * \copyright Copyright (c) 2012-2020, OpenGeoSys Community - * (http://www.opengeosys.org) Distributed under a Modified BSD License. See - * accompanying file LICENSE.txt or http://www.opengeosys.org/project/license + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license */ diff --git a/MeshLib/IO/XDMF/HdfWriter.cpp b/MeshLib/IO/XDMF/HdfWriter.cpp index aad4594ccf5..f7b7938593a 100644 --- a/MeshLib/IO/XDMF/HdfWriter.cpp +++ b/MeshLib/IO/XDMF/HdfWriter.cpp @@ -1,7 +1,7 @@ /** * \file * \copyright - * Copyright (c) 2012-2020, OpenGeoSys Community (http://www.opengeosys.org) + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or * http://www.opengeosys.org/project/license diff --git a/MeshLib/IO/XDMF/HdfWriter.h b/MeshLib/IO/XDMF/HdfWriter.h index e02233c6d3f..10dd6af5c5e 100644 --- a/MeshLib/IO/XDMF/HdfWriter.h +++ b/MeshLib/IO/XDMF/HdfWriter.h @@ -3,9 +3,11 @@ * \author Tobias Meisel * \date 2020-12-15 * \brief Writes vectorized data to HDF File - * \copyright Copyright (c) 2012-2020, OpenGeoSys Community - * (http://www.opengeosys.org) Distributed under a Modified BSD License. See - * accompanying file LICENSE.txt or http://www.opengeosys.org/project/license + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license */ #pragma once diff --git a/MeshLib/IO/XDMF/MeshPropertyDataType.h b/MeshLib/IO/XDMF/MeshPropertyDataType.h index d041ca3e184..35d32bf1fa2 100644 --- a/MeshLib/IO/XDMF/MeshPropertyDataType.h +++ b/MeshLib/IO/XDMF/MeshPropertyDataType.h @@ -1,3 +1,15 @@ +/** + * \file + * \author Tobias Meisel + * \date 2020-12-15 + * \brief Enum for all propertyVector data types + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + */ + #pragma once // TODO (tm) If used on several other places move definition of propertyVector diff --git a/MeshLib/IO/XDMF/XdmfData.cpp b/MeshLib/IO/XDMF/XdmfData.cpp index cdee513cad8..6c398ca9413 100644 --- a/MeshLib/IO/XDMF/XdmfData.cpp +++ b/MeshLib/IO/XDMF/XdmfData.cpp @@ -1,3 +1,12 @@ +/** + * \file + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + */ + #include "XdmfData.h" #include <XdmfArrayType.hpp> diff --git a/MeshLib/IO/XDMF/XdmfHdfData.h b/MeshLib/IO/XDMF/XdmfHdfData.h index 1b049e40f2b..b56560fc7d3 100644 --- a/MeshLib/IO/XDMF/XdmfHdfData.h +++ b/MeshLib/IO/XDMF/XdmfHdfData.h @@ -4,7 +4,7 @@ * \date 2020-11-13 * \brief Holds all data for the combined writing of xdmf and hdf5 file * \copyright - * Copyright (c) 2012-2020, OpenGeoSys Community (http://www.opengeosys.org) + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or * http://www.opengeosys.org/project/license diff --git a/MeshLib/IO/XDMF/XdmfHdfWriter.cpp b/MeshLib/IO/XDMF/XdmfHdfWriter.cpp index 60bb96bbfe7..b8dd973b4ba 100644 --- a/MeshLib/IO/XDMF/XdmfHdfWriter.cpp +++ b/MeshLib/IO/XDMF/XdmfHdfWriter.cpp @@ -1,3 +1,11 @@ +/** + * \file + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + */ #include "XdmfHdfWriter.h" diff --git a/MeshLib/IO/XDMF/XdmfHdfWriter.h b/MeshLib/IO/XDMF/XdmfHdfWriter.h index ce88ad76ae4..fed85bfa4a2 100644 --- a/MeshLib/IO/XDMF/XdmfHdfWriter.h +++ b/MeshLib/IO/XDMF/XdmfHdfWriter.h @@ -4,9 +4,8 @@ * \date 2020-11-13 * \brief XdmfWriter which create contiguous data for geometry and topology * and writes this and all attributes to 1 xdmf + 1 hdf file - * * \copyright - * Copyright (c) 2012-2020, OpenGeoSys Community (http://www.opengeosys.org) + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or * http://www.opengeosys.org/project/license diff --git a/MeshLib/IO/XDMF/fileIO.h b/MeshLib/IO/XDMF/fileIO.h index 4d50da9eaa5..1fe20cd1e44 100644 --- a/MeshLib/IO/XDMF/fileIO.h +++ b/MeshLib/IO/XDMF/fileIO.h @@ -2,11 +2,14 @@ * \file * \author Tobias Meisel * \date 2020-12-08 - * \brief Dispatches HDF5 functions specific to execution plattform (w/o MPI). - * There are multiple implementation to this interface! \copyright Copyright (c) - * 2012-2020, OpenGeoSys Community (http://www.opengeosys.org) Distributed under - * a Modified BSD License. See accompanying file LICENSE.txt or - * http://www.opengeosys.org/project/license + * \brief Dispatches HDF5 functions specific to execution platform (w/o MPI). + * There are multiple implementation to this interface! + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + * */ #pragma once diff --git a/MeshLib/IO/XDMF/mpi/fileIO.cpp b/MeshLib/IO/XDMF/mpi/fileIO.cpp index 91202237661..a99d4b0e79f 100644 --- a/MeshLib/IO/XDMF/mpi/fileIO.cpp +++ b/MeshLib/IO/XDMF/mpi/fileIO.cpp @@ -3,9 +3,12 @@ * \author Tobias Meisel * \date 2020-12-08 * \brief Function specific to execution with MPI, never include directly!! - * \copyright Copyright (c) 2012-2020, OpenGeoSys Community - * (http://www.opengeosys.org) Distributed under a Modified BSD License. See - * accompanying file LICENSE.txt or http://www.opengeosys.org/project/license + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + * */ #include "../fileIO.h" diff --git a/MeshLib/IO/XDMF/mpi/partition.cpp b/MeshLib/IO/XDMF/mpi/partition.cpp index b626e4fc902..ae0a6db43c5 100644 --- a/MeshLib/IO/XDMF/mpi/partition.cpp +++ b/MeshLib/IO/XDMF/mpi/partition.cpp @@ -3,9 +3,12 @@ * \author Tobias Meisel * \date 2020-12-08 * \brief Function specific to execution with MPI!! - * \copyright Copyright (c) 2012-2020, OpenGeoSys Community - * (http://www.opengeosys.org) Distributed under a Modified BSD License. See - * accompanying file LICENSE.txt or http://www.opengeosys.org/project/license + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + * */ #include <mpi.h> diff --git a/MeshLib/IO/XDMF/partition.h b/MeshLib/IO/XDMF/partition.h index 95b8b042f99..8c8899b957e 100644 --- a/MeshLib/IO/XDMF/partition.h +++ b/MeshLib/IO/XDMF/partition.h @@ -2,10 +2,12 @@ * \file * \author Tobias Meisel * \date 2020-12-08 - * \brief Dispatches functions specific to execution plattform (w/o MPI) - * \copyright Copyright (c) 2012-2020, OpenGeoSys Community - * (http://www.opengeosys.org) Distributed under a Modified BSD License. See - * accompanying file LICENSE.txt or http://www.opengeosys.org/project/license + * \brief Dispatches functions specific to execution platform (w/o MPI) + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license */ #pragma once diff --git a/MeshLib/IO/XDMF/posix/fileIO.cpp b/MeshLib/IO/XDMF/posix/fileIO.cpp index 5a17aed12cb..013cde03a57 100644 --- a/MeshLib/IO/XDMF/posix/fileIO.cpp +++ b/MeshLib/IO/XDMF/posix/fileIO.cpp @@ -3,9 +3,12 @@ * \author Tobias Meisel * \date 2020-12-08 * \brief Function specific to execution without MPI - * \copyright Copyright (c) 2012-2020, OpenGeoSys Community - * (http://www.opengeosys.org) Distributed under a Modified BSD License. See - * accompanying file LICENSE.txt or http://www.opengeosys.org/project/license + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + * */ #include "../fileIO.h" diff --git a/MeshLib/IO/XDMF/posix/partition.cpp b/MeshLib/IO/XDMF/posix/partition.cpp index 2a3d98df675..e5e2c5c7e8e 100644 --- a/MeshLib/IO/XDMF/posix/partition.cpp +++ b/MeshLib/IO/XDMF/posix/partition.cpp @@ -1,3 +1,13 @@ +/** + * \file + * \copyright + * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + * + */ + #include "../partition.h" namespace MeshLib::IO -- GitLab