From 9481d128f08d8dca209e75f595e2158aa3b79162 Mon Sep 17 00:00:00 2001 From: marisa Date: Sun, 29 Oct 2023 21:05:29 -0300 Subject: [PATCH] Update copyright notices --- CMakeLists.txt | 2 +- flake.nix | 2 +- src/log/Log.cpp | 4 ++-- src/log/Log.hpp | 4 ++-- src/main.cpp | 4 ++-- src/md/Atom.cpp | 4 ++-- src/md/Atom.hpp | 4 ++-- src/md/AtomsGenerator.cpp | 4 ++-- src/md/AtomsGenerator.hpp | 4 ++-- src/md/CMakeLists.txt | 2 +- src/md/MolecularDynamics.cpp | 4 ++-- src/md/Potentials.hpp | 4 ++-- src/md/Space.cpp | 4 ++-- src/md/Space.hpp | 4 ++-- src/md/System.cpp | 4 ++-- src/md/System.hpp | 4 ++-- src/md/mpi/Worker.hpp | 4 ++-- 17 files changed, 31 insertions(+), 31 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76a7a5a..23900ac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2023 jun +# Copyright (c) 2023 marisa cmake_minimum_required(VERSION 3.10) project(molecular_dynamics) diff --git a/flake.nix b/flake.nix index 0c126f4..fcc1a02 100644 --- a/flake.nix +++ b/flake.nix @@ -1,4 +1,4 @@ -# Copyright (c) 2023 jun +# Copyright (c) 2023 marisa { description = "MolecularDynamics2"; diff --git a/src/log/Log.cpp b/src/log/Log.cpp index 4a4f558..f679b7f 100644 --- a/src/log/Log.cpp +++ b/src/log/Log.cpp @@ -1,11 +1,11 @@ /** * @file Log.cpp - * @author Jun + * @author marisa * @brief Logging utilities * @version 0.1 * @date 2023-10-06 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/log/Log.hpp b/src/log/Log.hpp index cd8d133..899b157 100644 --- a/src/log/Log.hpp +++ b/src/log/Log.hpp @@ -1,11 +1,11 @@ /** * @file Log.hpp - * @author Jun + * @author marisa * @brief Logging utilities * @version 0.1 * @date 2023-10-06 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/main.cpp b/src/main.cpp index 7ccd2d9..7797f67 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,11 +1,11 @@ /** * @file main.cpp - * @author jun + * @author marisa * @brief Main entry of the program * @version 0.1 * @date 2023-07-23 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/Atom.cpp b/src/md/Atom.cpp index 4c6e2f7..4a8f288 100644 --- a/src/md/Atom.cpp +++ b/src/md/Atom.cpp @@ -1,11 +1,11 @@ /** * @file Atom.cpp - * @author jun + * @author marisa * @brief Atom definitions * @version 0.1 * @date 2023-08-05 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/Atom.hpp b/src/md/Atom.hpp index 4e41ecb..191efae 100644 --- a/src/md/Atom.hpp +++ b/src/md/Atom.hpp @@ -1,11 +1,11 @@ /** * @file Atom.hpp - * @author jun + * @author marisa * @brief Atom declarations * @version 0.1 * @date 2023-07-25 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/AtomsGenerator.cpp b/src/md/AtomsGenerator.cpp index 1d31a23..70cac0e 100644 --- a/src/md/AtomsGenerator.cpp +++ b/src/md/AtomsGenerator.cpp @@ -1,11 +1,11 @@ /** * @file AtomsGenerator.cpp - * @author jun + * @author marisa * @brief AtomsGenerator definitions * @version 0.1 * @date 2023-08-05 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/AtomsGenerator.hpp b/src/md/AtomsGenerator.hpp index 92d21a5..98b065e 100644 --- a/src/md/AtomsGenerator.hpp +++ b/src/md/AtomsGenerator.hpp @@ -1,11 +1,11 @@ /** * @file AtomsGenerator.hpp - * @author jun + * @author marisa * @brief AtomsGenerator declarations * @version 0.1 * @date 2023-08-05 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/CMakeLists.txt b/src/md/CMakeLists.txt index 882b97c..be8acf5 100644 --- a/src/md/CMakeLists.txt +++ b/src/md/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2023 jun +# Copyright (c) 2023 marisa cmake_minimum_required(VERSION 3.25.1) diff --git a/src/md/MolecularDynamics.cpp b/src/md/MolecularDynamics.cpp index 2c9617f..e7ed42d 100644 --- a/src/md/MolecularDynamics.cpp +++ b/src/md/MolecularDynamics.cpp @@ -1,11 +1,11 @@ /** * @file MolecularDynamics.cpp - * @author jun + * @author marisa * @brief * @version 0.1 * @date 2023-07-23 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/Potentials.hpp b/src/md/Potentials.hpp index 226ca52..d1d9162 100644 --- a/src/md/Potentials.hpp +++ b/src/md/Potentials.hpp @@ -1,11 +1,11 @@ /** * @file Potentials.hpp - * @author jun + * @author marisa * @brief Potentials declarations * @version 0.1 * @date 2023-07-25 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/Space.cpp b/src/md/Space.cpp index ce48559..be653fe 100644 --- a/src/md/Space.cpp +++ b/src/md/Space.cpp @@ -1,11 +1,11 @@ /** * @file Space.cpp - * @author jun + * @author marisa * @brief Space definitions * @version 0.1 * @date 2023-08-06 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/Space.hpp b/src/md/Space.hpp index 645a1e4..94a700f 100644 --- a/src/md/Space.hpp +++ b/src/md/Space.hpp @@ -1,11 +1,11 @@ /** * @file Grid.hpp - * @author jun + * @author marisa * @brief Grid declarations * @version 0.1 * @date 2023-08-05 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/System.cpp b/src/md/System.cpp index 3736377..645e39e 100644 --- a/src/md/System.cpp +++ b/src/md/System.cpp @@ -1,11 +1,11 @@ /** * @file System.cpp - * @author jun + * @author marisa * @brief System definitions * @version 0.1 * @date 2023-08-05 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/System.hpp b/src/md/System.hpp index d7b4d90..405c33c 100644 --- a/src/md/System.hpp +++ b/src/md/System.hpp @@ -1,11 +1,11 @@ /** * @file System.hpp - * @author jun + * @author marisa * @brief System declarations * @version 0.1 * @date 2023-07-25 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */ diff --git a/src/md/mpi/Worker.hpp b/src/md/mpi/Worker.hpp index 19edfa4..5446aa1 100644 --- a/src/md/mpi/Worker.hpp +++ b/src/md/mpi/Worker.hpp @@ -1,11 +1,11 @@ /** * @file Worker.hpp - * @author Jun + * @author marisa * @brief Worker declarations * @version 0.1 * @date 2023-10-06 * - * Copyright (c) 2023 jun + * Copyright (c) 2023 marisa * */