From 99b505dc31ab664980e40417674ec2fbac887b7d Mon Sep 17 00:00:00 2001 From: Fan <fan_hu@pku.edu.cn> Date: Thu, 2 Dec 2021 14:17:47 +0800 Subject: [PATCH] add copyright --- corsika/detail/framework/geometry/Box.inl | 8 ++++++++ corsika/framework/geometry/Box.hpp | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/corsika/detail/framework/geometry/Box.inl b/corsika/detail/framework/geometry/Box.inl index d5b942ec6..d8b7d4129 100644 --- a/corsika/detail/framework/geometry/Box.inl +++ b/corsika/detail/framework/geometry/Box.inl @@ -1,3 +1,11 @@ +/* + * (c) Copyright 2020 CORSIKA Project, corsika-project@lists.kit.edu + * + * This software is distributed under the terms of the GNU General Public + * Licence version 3 (GPL Version 3). See file LICENSE for a full version of + * the license. + */ + namespace corsika { inline bool Box::contains(Point const& p) const { if ((abs(p.getX(cs_)) < x_) && (abs(p.getY(cs_)) < y_) && (abs(p.getZ(cs_)) < z_)) diff --git a/corsika/framework/geometry/Box.hpp b/corsika/framework/geometry/Box.hpp index 729e64ebc..20ad70b7e 100644 --- a/corsika/framework/geometry/Box.hpp +++ b/corsika/framework/geometry/Box.hpp @@ -1,3 +1,11 @@ +/* + * (c) Copyright 2020 CORSIKA Project, corsika-project@lists.kit.edu + * + * This software is distributed under the terms of the GNU General Public + * Licence version 3 (GPL Version 3). See file LICENSE for a full version of + * the license. + */ + #pragma once #include <corsika/framework/core/PhysicalUnits.hpp> -- GitLab