From fe1d069441e5a714898e631baff6703ce6df8b67 Mon Sep 17 00:00:00 2001 From: mbs Date: Fri, 16 Jun 2023 20:44:21 +0100 Subject: [PATCH] updated copyright message --- CMakeLists.txt | 2 +- src/CMakeLists.txt | 2 +- src/CTestTestfileInstall.cmake | 2 +- src/cpp/CMakeLists.txt | 2 +- src/cpp/Exceptions.cxx | 2 +- src/cpp/Exceptions.hxx | 2 +- src/cpp/Job.hxx | 2 +- src/cpp/JobParametersProxy.cxx | 2 +- src/cpp/JobParametersProxy.hxx | 2 +- src/cpp/Launcher.hxx | 2 +- src/cpp/MonoPyJob.cxx | 2 +- src/cpp/MonoPyJob.hxx | 2 +- src/cpp/PyConversions.hxx | 2 +- src/cpp/PyStudyFunction.cxx | 2 +- src/cpp/PyStudyFunction.hxx | 2 +- src/cpp/PyStudyJob.cxx | 2 +- src/cpp/PyStudyJob.hxx | 2 +- src/cpp/Sample.hxx | 2 +- src/cpp/SamplePyConversions.hxx | 2 +- src/cpp/StudyFunction.hxx | 2 +- src/cpp/TMonoPyJob.hxx | 2 +- src/cpp/TPyStudyJob.hxx | 2 +- src/cpp/Test/CMakeLists.txt | 2 +- src/cpp/Test/CTestTestfileInstall.cmake | 2 +- src/cpp/Test/PyTestMain.cxx | 2 +- src/cpp/Test/SampleTest.cxx | 2 +- src/cpp/Test/SampleTest.hxx | 2 +- src/cpp/Test/StudyGeneralTest.cxx | 2 +- src/cpp/Test/StudyGeneralTest.hxx | 2 +- src/cpp/Test/StudyRestartTest.cxx | 2 +- src/cpp/Test/StudyRestartTest.hxx | 2 +- src/cpp/Test/TestMain.cxx | 2 +- src/cpp/YacsStudyFunction.cxx | 2 +- src/cpp/YacsStudyFunction.hxx | 2 +- src/gui/CMakeLists.txt | 2 +- src/gui/ParamsConfig.cxx | 2 +- src/gui/ParamsConfig.hxx | 2 +- src/gui/PathsConfig.cxx | 2 +- src/gui/PathsConfig.hxx | 2 +- src/gui/QuickConfig.cxx | 2 +- src/gui/QuickConfig.hxx | 2 +- src/gui/ResourceWidget.cxx | 2 +- src/gui/ResourceWidget.hxx | 2 +- src/gui/ydefxgui.cxx | 2 +- src/gui/ydefxguiExports.hxx | 2 +- src/pydefx/CMakeLists.txt | 2 +- src/pydefx/__init__.py | 2 +- src/pydefx/allpurposebuilder.py | 2 +- src/pydefx/configuration.py | 2 +- src/pydefx/defaultschemabuilder.py | 2 +- src/pydefx/localbuilder.py | 2 +- src/pydefx/localstudy.py | 2 +- src/pydefx/multijobbuilder.py | 2 +- src/pydefx/multijobstudy.py | 2 +- src/pydefx/parameters.py | 2 +- src/pydefx/pyscript.py | 2 +- src/pydefx/pystudy.py | 2 +- src/pydefx/sample.py | 2 +- src/pydefx/samplecsviterator.py | 2 +- src/pydefx/samplecsvmanager.py | 2 +- src/pydefx/slurmbuilder.py | 2 +- src/pydefx/slurmstudy.py | 2 +- src/pydefx/studyexception.py | 2 +- src/pydefx/studyresult.py | 2 +- src/pyexample/CMakeLists.txt | 2 +- src/pyexample/CTestTestfileInstall.cmake | 2 +- src/pyexample/insitu/insituiterator.py | 2 +- src/pyexample/insitu/insitumanager.py | 2 +- src/pyexample/runUnitTest.sh | 2 +- src/pytools/mpmcn.py | 2 +- 70 files changed, 70 insertions(+), 70 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ec48e2f..8060952 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6045f2b..6b2cc72 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/CTestTestfileInstall.cmake b/src/CTestTestfileInstall.cmake index 6fae9d7..65e0ad8 100644 --- a/src/CTestTestfileInstall.cmake +++ b/src/CTestTestfileInstall.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2019 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/CMakeLists.txt b/src/cpp/CMakeLists.txt index 1030710..a5ed9d2 100644 --- a/src/cpp/CMakeLists.txt +++ b/src/cpp/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Exceptions.cxx b/src/cpp/Exceptions.cxx index 7b3fa9e..62af034 100644 --- a/src/cpp/Exceptions.cxx +++ b/src/cpp/Exceptions.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Exceptions.hxx b/src/cpp/Exceptions.hxx index 0c832e3..bdfe2f9 100644 --- a/src/cpp/Exceptions.hxx +++ b/src/cpp/Exceptions.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Job.hxx b/src/cpp/Job.hxx index 86cae67..657713e 100644 --- a/src/cpp/Job.hxx +++ b/src/cpp/Job.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/JobParametersProxy.cxx b/src/cpp/JobParametersProxy.cxx index 652261f..fda135f 100644 --- a/src/cpp/JobParametersProxy.cxx +++ b/src/cpp/JobParametersProxy.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/JobParametersProxy.hxx b/src/cpp/JobParametersProxy.hxx index aa95cae..0cf2ec2 100644 --- a/src/cpp/JobParametersProxy.hxx +++ b/src/cpp/JobParametersProxy.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Launcher.hxx b/src/cpp/Launcher.hxx index 78492c3..1cfc66f 100644 --- a/src/cpp/Launcher.hxx +++ b/src/cpp/Launcher.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/MonoPyJob.cxx b/src/cpp/MonoPyJob.cxx index 88973f0..7aaac82 100644 --- a/src/cpp/MonoPyJob.cxx +++ b/src/cpp/MonoPyJob.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/MonoPyJob.hxx b/src/cpp/MonoPyJob.hxx index 5f011e6..4819a84 100644 --- a/src/cpp/MonoPyJob.hxx +++ b/src/cpp/MonoPyJob.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/PyConversions.hxx b/src/cpp/PyConversions.hxx index a540218..d6b8ba1 100644 --- a/src/cpp/PyConversions.hxx +++ b/src/cpp/PyConversions.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/PyStudyFunction.cxx b/src/cpp/PyStudyFunction.cxx index 6c4dc4c..029d132 100644 --- a/src/cpp/PyStudyFunction.cxx +++ b/src/cpp/PyStudyFunction.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/PyStudyFunction.hxx b/src/cpp/PyStudyFunction.hxx index 973417a..199c298 100644 --- a/src/cpp/PyStudyFunction.hxx +++ b/src/cpp/PyStudyFunction.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/PyStudyJob.cxx b/src/cpp/PyStudyJob.cxx index f55b861..f5d0649 100644 --- a/src/cpp/PyStudyJob.cxx +++ b/src/cpp/PyStudyJob.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/PyStudyJob.hxx b/src/cpp/PyStudyJob.hxx index 25863ef..bf7a715 100644 --- a/src/cpp/PyStudyJob.hxx +++ b/src/cpp/PyStudyJob.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Sample.hxx b/src/cpp/Sample.hxx index 292150b..ea721f4 100644 --- a/src/cpp/Sample.hxx +++ b/src/cpp/Sample.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/SamplePyConversions.hxx b/src/cpp/SamplePyConversions.hxx index 8ba7642..4313724 100644 --- a/src/cpp/SamplePyConversions.hxx +++ b/src/cpp/SamplePyConversions.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/StudyFunction.hxx b/src/cpp/StudyFunction.hxx index 6816165..88f448c 100644 --- a/src/cpp/StudyFunction.hxx +++ b/src/cpp/StudyFunction.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/TMonoPyJob.hxx b/src/cpp/TMonoPyJob.hxx index 08a574c..3a6fef4 100644 --- a/src/cpp/TMonoPyJob.hxx +++ b/src/cpp/TMonoPyJob.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/TPyStudyJob.hxx b/src/cpp/TPyStudyJob.hxx index d42ca69..744b5b8 100644 --- a/src/cpp/TPyStudyJob.hxx +++ b/src/cpp/TPyStudyJob.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/CMakeLists.txt b/src/cpp/Test/CMakeLists.txt index a4686a6..fd71ff6 100644 --- a/src/cpp/Test/CMakeLists.txt +++ b/src/cpp/Test/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/CTestTestfileInstall.cmake b/src/cpp/Test/CTestTestfileInstall.cmake index 465bf3b..5674683 100644 --- a/src/cpp/Test/CTestTestfileInstall.cmake +++ b/src/cpp/Test/CTestTestfileInstall.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2019 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/PyTestMain.cxx b/src/cpp/Test/PyTestMain.cxx index 6ff25f1..12604e5 100644 --- a/src/cpp/Test/PyTestMain.cxx +++ b/src/cpp/Test/PyTestMain.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/SampleTest.cxx b/src/cpp/Test/SampleTest.cxx index 9889cef..a79d51b 100644 --- a/src/cpp/Test/SampleTest.cxx +++ b/src/cpp/Test/SampleTest.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/SampleTest.hxx b/src/cpp/Test/SampleTest.hxx index 1abf483..7c10f63 100644 --- a/src/cpp/Test/SampleTest.hxx +++ b/src/cpp/Test/SampleTest.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/StudyGeneralTest.cxx b/src/cpp/Test/StudyGeneralTest.cxx index d73d5cc..a5b5909 100644 --- a/src/cpp/Test/StudyGeneralTest.cxx +++ b/src/cpp/Test/StudyGeneralTest.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/StudyGeneralTest.hxx b/src/cpp/Test/StudyGeneralTest.hxx index bf684c7..9e181af 100644 --- a/src/cpp/Test/StudyGeneralTest.hxx +++ b/src/cpp/Test/StudyGeneralTest.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/StudyRestartTest.cxx b/src/cpp/Test/StudyRestartTest.cxx index bbdd18e..380323d 100644 --- a/src/cpp/Test/StudyRestartTest.cxx +++ b/src/cpp/Test/StudyRestartTest.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/StudyRestartTest.hxx b/src/cpp/Test/StudyRestartTest.hxx index d42f1d7..605d69a 100644 --- a/src/cpp/Test/StudyRestartTest.hxx +++ b/src/cpp/Test/StudyRestartTest.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/Test/TestMain.cxx b/src/cpp/Test/TestMain.cxx index 9f44746..7ecbeb2 100644 --- a/src/cpp/Test/TestMain.cxx +++ b/src/cpp/Test/TestMain.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/YacsStudyFunction.cxx b/src/cpp/YacsStudyFunction.cxx index c817051..805923e 100644 --- a/src/cpp/YacsStudyFunction.cxx +++ b/src/cpp/YacsStudyFunction.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/cpp/YacsStudyFunction.hxx b/src/cpp/YacsStudyFunction.hxx index 58fd954..2856a4d 100644 --- a/src/cpp/YacsStudyFunction.hxx +++ b/src/cpp/YacsStudyFunction.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index 8774193..e36861c 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/ParamsConfig.cxx b/src/gui/ParamsConfig.cxx index a0a3d1c..e268caa 100644 --- a/src/gui/ParamsConfig.cxx +++ b/src/gui/ParamsConfig.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/ParamsConfig.hxx b/src/gui/ParamsConfig.hxx index a66ada0..2d36315 100644 --- a/src/gui/ParamsConfig.hxx +++ b/src/gui/ParamsConfig.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/PathsConfig.cxx b/src/gui/PathsConfig.cxx index 76e2a2e..f8874c1 100644 --- a/src/gui/PathsConfig.cxx +++ b/src/gui/PathsConfig.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/PathsConfig.hxx b/src/gui/PathsConfig.hxx index d87247b..3bf9fa2 100644 --- a/src/gui/PathsConfig.hxx +++ b/src/gui/PathsConfig.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/QuickConfig.cxx b/src/gui/QuickConfig.cxx index 5a16596..0d06c3e 100644 --- a/src/gui/QuickConfig.cxx +++ b/src/gui/QuickConfig.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/QuickConfig.hxx b/src/gui/QuickConfig.hxx index 8d031a8..f7a1d18 100644 --- a/src/gui/QuickConfig.hxx +++ b/src/gui/QuickConfig.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/ResourceWidget.cxx b/src/gui/ResourceWidget.cxx index 01d2324..be51276 100644 --- a/src/gui/ResourceWidget.cxx +++ b/src/gui/ResourceWidget.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/ResourceWidget.hxx b/src/gui/ResourceWidget.hxx index 86ea843..232144b 100644 --- a/src/gui/ResourceWidget.hxx +++ b/src/gui/ResourceWidget.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/ydefxgui.cxx b/src/gui/ydefxgui.cxx index b5c6bf3..57d0ad6 100644 --- a/src/gui/ydefxgui.cxx +++ b/src/gui/ydefxgui.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2021 EDF R&D +// Copyright (C) 2019-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/gui/ydefxguiExports.hxx b/src/gui/ydefxguiExports.hxx index 4ef91df..83dff23 100644 --- a/src/gui/ydefxguiExports.hxx +++ b/src/gui/ydefxguiExports.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2021 EDF R&D +// Copyright (C) 2021-2023 EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/CMakeLists.txt b/src/pydefx/CMakeLists.txt index f5a2ca3..513d979 100644 --- a/src/pydefx/CMakeLists.txt +++ b/src/pydefx/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/__init__.py b/src/pydefx/__init__.py index 142f1e6..13c1664 100644 --- a/src/pydefx/__init__.py +++ b/src/pydefx/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/allpurposebuilder.py b/src/pydefx/allpurposebuilder.py index bf7d4df..e89b8a8 100644 --- a/src/pydefx/allpurposebuilder.py +++ b/src/pydefx/allpurposebuilder.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/configuration.py b/src/pydefx/configuration.py index 6852b75..752a5d0 100644 --- a/src/pydefx/configuration.py +++ b/src/pydefx/configuration.py @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/defaultschemabuilder.py b/src/pydefx/defaultschemabuilder.py index e8e52fa..22114bd 100644 --- a/src/pydefx/defaultschemabuilder.py +++ b/src/pydefx/defaultschemabuilder.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/localbuilder.py b/src/pydefx/localbuilder.py index 09edcb0..2eb3930 100644 --- a/src/pydefx/localbuilder.py +++ b/src/pydefx/localbuilder.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/localstudy.py b/src/pydefx/localstudy.py index 0235ac2..6f97f47 100644 --- a/src/pydefx/localstudy.py +++ b/src/pydefx/localstudy.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/multijobbuilder.py b/src/pydefx/multijobbuilder.py index 1cd8cd2..ab22949 100644 --- a/src/pydefx/multijobbuilder.py +++ b/src/pydefx/multijobbuilder.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/multijobstudy.py b/src/pydefx/multijobstudy.py index 9cc493c..4805468 100644 --- a/src/pydefx/multijobstudy.py +++ b/src/pydefx/multijobstudy.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/parameters.py b/src/pydefx/parameters.py index df93ceb..c94996c 100644 --- a/src/pydefx/parameters.py +++ b/src/pydefx/parameters.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/pyscript.py b/src/pydefx/pyscript.py index 4263e6e..7156d27 100644 --- a/src/pydefx/pyscript.py +++ b/src/pydefx/pyscript.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/pystudy.py b/src/pydefx/pystudy.py index 364b4ff..0737bdd 100644 --- a/src/pydefx/pystudy.py +++ b/src/pydefx/pystudy.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/sample.py b/src/pydefx/sample.py index 9b7f6f1..ffe30c8 100644 --- a/src/pydefx/sample.py +++ b/src/pydefx/sample.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/samplecsviterator.py b/src/pydefx/samplecsviterator.py index 0daf1eb..fae9da6 100644 --- a/src/pydefx/samplecsviterator.py +++ b/src/pydefx/samplecsviterator.py @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/samplecsvmanager.py b/src/pydefx/samplecsvmanager.py index 3139cb5..aee8d33 100644 --- a/src/pydefx/samplecsvmanager.py +++ b/src/pydefx/samplecsvmanager.py @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/slurmbuilder.py b/src/pydefx/slurmbuilder.py index 80ac921..b272496 100644 --- a/src/pydefx/slurmbuilder.py +++ b/src/pydefx/slurmbuilder.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/slurmstudy.py b/src/pydefx/slurmstudy.py index d5c8b10..7aeb750 100644 --- a/src/pydefx/slurmstudy.py +++ b/src/pydefx/slurmstudy.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/studyexception.py b/src/pydefx/studyexception.py index c943a20..f7e8352 100644 --- a/src/pydefx/studyexception.py +++ b/src/pydefx/studyexception.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pydefx/studyresult.py b/src/pydefx/studyresult.py index 3d43055..eed24d9 100644 --- a/src/pydefx/studyresult.py +++ b/src/pydefx/studyresult.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pyexample/CMakeLists.txt b/src/pyexample/CMakeLists.txt index a144487..7ada5de 100644 --- a/src/pyexample/CMakeLists.txt +++ b/src/pyexample/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pyexample/CTestTestfileInstall.cmake b/src/pyexample/CTestTestfileInstall.cmake index d93938e..3e06027 100644 --- a/src/pyexample/CTestTestfileInstall.cmake +++ b/src/pyexample/CTestTestfileInstall.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2019 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pyexample/insitu/insituiterator.py b/src/pyexample/insitu/insituiterator.py index 71118f9..8b036ae 100644 --- a/src/pyexample/insitu/insituiterator.py +++ b/src/pyexample/insitu/insituiterator.py @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pyexample/insitu/insitumanager.py b/src/pyexample/insitu/insitumanager.py index 27e7a1e..94292b1 100644 --- a/src/pyexample/insitu/insitumanager.py +++ b/src/pyexample/insitu/insitumanager.py @@ -1,4 +1,4 @@ -# Copyright (C) 2019-2021 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pyexample/runUnitTest.sh b/src/pyexample/runUnitTest.sh index 7531d2d..956b1e5 100755 --- a/src/pyexample/runUnitTest.sh +++ b/src/pyexample/runUnitTest.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (C) 2019 EDF R&D +# Copyright (C) 2019-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/pytools/mpmcn.py b/src/pytools/mpmcn.py index bbbb3a2..2e7fefa 100644 --- a/src/pytools/mpmcn.py +++ b/src/pytools/mpmcn.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -# Copyright (C) 2022 EDF R&D +# Copyright (C) 2022-2023 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public -- 2.39.2